in reply to map weirdness
[@{$d[$mapkey]}]
which means that you have a array ref, $d{$mapkey} that you derefence through @{$d[$mapkey]}, and then you want to have the corresponding array ref. This is not useful, just use :
$d[$mapkey]
HTH
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: map weirdness
by ysth (Canon) on Dec 13, 2004 at 13:33 UTC | |
by insaniac (Friar) on Dec 13, 2004 at 14:52 UTC | |
by ysth (Canon) on Dec 13, 2004 at 19:11 UTC | |
by insaniac (Friar) on Dec 15, 2004 at 15:24 UTC | |
Re^2: map weirdness
by Fletch (Bishop) on Dec 13, 2004 at 14:10 UTC | |
Re^2: map weirdness
by insaniac (Friar) on Dec 13, 2004 at 13:16 UTC | |
by jonadab (Parson) on Dec 13, 2004 at 13:24 UTC | |
by insaniac (Friar) on Dec 13, 2004 at 14:35 UTC | |
Re^2: map weirdness
by Anonymous Monk on Dec 13, 2004 at 15:08 UTC |