Help for this page

Select Code to Download


  1. or download this
    $some_object->one_method->other_method( [map { ... } map {...} @$sourc
    +e_aref] )
    
  2. or download this
    $some_object->one_method->other_method( [
       map {
    ...
          ...
       } @$source_aref
    ]);
    
  3. or download this
    use subs qw(
        fribble_aref
    ...
    sub frobble_aref {
        return [map { ... } @{+shift}];
    }