in reply to array in hash in hash access
How do I access the size of the 'disallowed' array?
my $length = @{$t_type{'a'}{'range'}{'disallowed'}}; print "Length: $length\n";
What is the best way to foreach this array?
print "$_\n" foreach (@{$t_type{'a'}{'range'}{'disallowed'}})
|
|---|