in reply to Re: Access reference of a tied hash within TIEHASH
in thread Access reference of a tied hash within TIEHASH
I need to access a reference to the hash being tied inside the TIEHASH function.
For instance:
tie %hash, $class;
sub TIEHASH {
my ($title)=@_;
# need to access a ref %hash in some way from right here.
}