in reply to Re^3: specific array in hash of arrays
in thread specific array in hash of arrays
should normally beif (exists $hoh{$array_name}->{$to_find}) {
if ( exists( $hoh{$array_name} ) && exists( $hoh{$array_name}->{$to_find} ) ) {
to prevent autovivification of entries into %hoh. That might not matter here, though.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: specific array in hash of arrays
by gone2015 (Deacon) on Oct 09, 2008 at 15:01 UTC | |
by ikegami (Patriarch) on Oct 09, 2008 at 15:21 UTC |