in reply to Re: Returning indices with same values for array within hash.
in thread Returning indices with same values for array within hash.

yes, but you don't really need the arrow after the first nesting level! =)

DB<108> %matrix = (NI => [1 ,1 ,3 ,4] ); => ("NI", [1, 1, 3, 4]) DB<109> $matrix{NI}[3] => 4

Cheers Rolf

( addicted to the Perl Programming Language)

Replies are listed 'Best First'.
Re^3: Returning indices with same values for array within hash.
by Kenosis (Priest) on Nov 10, 2013 at 16:51 UTC

    Good point!