But some things that I think you might have been asking:
A key or a value in a hash doesn't point back to its containing hash.
If $a->{C} == 'value'; but you want $a->{C} instead to contain a hash ref, you can do this:
my %C = ( d => 1, e => 2); $a{C} = \%C; OR just: $a{C} = { d => 1, e => 2};
If that wasn't what you were asking, I apologise - please explain further.
Clint
In reply to Re: Going Backwards In Reference
by clinton
in thread Going Backwards In Reference
by Spiffy
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |