in reply to Re: Help with multi-dimensional arrays (list of lists)
in thread Help with multi-dimensional arrays (list of lists)
Sorry, but that's completely off base.
The elements of @biu contain references, so you could do
$biu[$i]->[4]->[$k]
but -> is optional between indexes, so the following are all fine
$biu[$i]->[4]->[$k] $biu[$i]->[4][$k] $biu[$i][4]->[$k] $biu[$i][4][$k]
$biu->[$i][4][$k] dereferences the reference in $biu, but there's no such variable in the program.
|
|---|