Help for this page

Select Code to Download


  1. or download this
    package NestedMap;
    
    ...
            $f->($_);
        } @_
    }
    
  2. or download this
    # show all combinations of (A,B,C) (a,b,c) and (1,2,3)
    print join("\n",
    ...
        } qw(a b c)
      } qw(1 2 3)
    );
    
  3. or download this
    nestedmap { ... } list
    
  4. or download this
    nestedmap sub { ... }, list