Help for this page

Select Code to Download


  1. or download this
    $array_of_lists{$key} = splice(@{$array_of_lists{$key}}, $t, 1);
    
  2. or download this
    @{$hash_of_arrays{$key}} = splice( ... );
    
  3. or download this
    my ($key, $t);
    
    ...
    {
        for $t ( 0 .. scalar @{$array_of_lists{$key}} )
        {
    
  4. or download this
    for my $key ( sort {$a<=>$b} keys %hash_of_lists )
    {
        for my $t ( 0 .. $#{$hash_of_lists{$key}} )
        {