$array{ pack 'C*', @sortedIndices } = $somevalue; #### $array->[1][2] = 'the value'; ... sometime later $array->[1][2][3] = 'the value'; #### $array->{ pack 'C*', 1, 2 } = 'the value'; $array->{ pack 'C*', 1, 2, 3 } = 'the value';
## $array->[1][2] = 'the value'; ... sometime later $array->[1][2][3] = 'the value'; ##
## $array->{ pack 'C*', 1, 2 } = 'the value'; $array->{ pack 'C*', 1, 2, 3 } = 'the value';