in reply to Re: incremental additions to multidimensional arrays
in thread incremental additions to multidimensional arrays
it would be nice if this worked:
and a new entrymy ($ref,$monk); $ref->[2]->[1] = "value"; $ref->[3]->[2] = "value"; $monk->[1]->[3] = "value"; push @{ $ref }, $monk;
$ref->[1]->[3]
was created. But instead, this array "monk" is added as
$ref->[4]
thank you for your time and effort
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: incremental additions to multidimensional arrays
by Anonymous Monk on Jun 15, 2007 at 08:35 UTC |