No, not unless you pass it in manually.
use v5.14; package MyHash { use Data::Dumper; use Tie::Hash (); use base "Tie::StdHash"; sub TIEHASH { my $class = shift; print Dumper @_; $class->SUPER::TIEHASH(@_); } } my %hash; tie %hash, MyHash => \%hash;
In reply to Re: Access reference of a tied hash within TIEHASH
by tobyink
in thread Access reference of a tied hash within TIEHASH
by djcp3
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |