Help for this page

Select Code to Download


  1. or download this
    
    # usage: special_last_map { block } $sentinel_variable, @list_of_value
    +s;
    ...
        } 0 .. $#_
    }
    
  2. or download this
    
    my $is_last;
    ...
        $is_last,
        @list;
    
  3. or download this
    sub map_with_index(&@)
    {
    ...
            &$code
        } 0 .. $#_
    }
    
  4. or download this
    print for map_with_index
    {
    ...
    }
    qw( alpha beta gamma delta );