Help for this page

Select Code to Download


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