Help for this page

Select Code to Download


  1. or download this
    ...
    inside first anonymous block
    ...
      ];
    
    $
    
  2. or download this
      return [
        map {
          sub { \@_ }
            ->( @{ $$data[$_] }[@cis] )
        } $$range[0] - 1 .. $$range[2] - 1
      ];
    
  3. or download this
        return
          [
           map {
    ...
                 @$_[ $cols->[0] .. $cols->[1] ] # x-slice
           }  @$data[ $rows->[0] .. $rows->[1] ] # y-slice
          ];