Help for this page

Select Code to Download


  1. or download this
    foreach $key(keys %h)
    {
    push(@arr,$h{$key});
    }
    
  2. or download this
    push @arr, values %h;
    
  3. or download this
    push @arr, map @$_, values %h;
    
  4. or download this
    push @arr, map %$_, values %h;
    
  5. or download this
    push @arr, map ref() eq 'ARRAY' ? @$_ : ref() eq 'HASH' ? %$_ : $_, va
    +lues %h;