- or download this
DB<25> sub first (&@) { my $code=shift; grep {return $_ if &$code} @
+_ }
...
DB<30> any { $_ >5 } 1..10
=> 1
- or download this
DB<40> sub position (&@) { my $code=shift; my $idx=-1; grep {++$idx;
+ return $idx if &$code} @_ ; ()}
DB<41> position { !$_ } 1..10,undef,11..20
=> 10
- or download this
DB<53> sub first (&@) { my $code=shift; &$code and return $_ for @_
+; ()}
DB<54> sub any (&@) { my $code=shift; &$code and return 1 for @_ ; (
+)}