in reply to Re: Perl6 Contest #2: P6 That Doesn't Look Like P5
in thread Perl6 Contest #2: P6 That Doesn't Look Like P5
You can always simulate your own n-ary map using gather:
Although allowing map to take multiple items from the list at once would be nicer, and it's something I've wanted rather often.gather { for @loop Y @pos -> $arr, $i { take $a[ $i ]; } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl6 Contest #2: P6 That Doesn't Look Like P5
by iblech (Friar) on Jun 03, 2005 at 18:18 UTC |