Help for this page

Select Code to Download


  1. or download this
    # @keys = keys %hash;  # done ONCE
    # ($k,$v) = rhe(%hash,@keys);
    ...
        $av->[$idx]= $last   if  $idx < @$av;
        return( $key, $val );
    }
    
  2. or download this
    @keys = keys %hash;
    @vals = values %hash;
    undef %hash;