| Perl6-Take documentation | Contained in the Perl6-Take distribution. |
Perl6::Take - gather/take in Perl 5
use Perl6::Take;
my @foo = gather {
take 5;
};
Accepts a block. take statements inside the dynamic scope of the
block are used to accumulate a list, which is gathered as the return value
of the block.
Accumulates its argument (or list of arguments) on to the nearest
gather in the dynamic scope. Arguments are evaluated in list
context. The arguments may be passed on to a variable, but note that
this assignment should usually be done in list context, as per usual
context rules:
$answer = take 42; # 1
($answer) = take 42; # 42
Gaal Yahas, <gaal at forum2.org>
Please report any bugs or feature requests to
bug-perl6-gather at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Perl6-Take.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Perl6::Take
You can also look for information at:
Copyright 2006-2007 Gaal Yahas.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Perl6-Take documentation | Contained in the Perl6-Take distribution. |
package Perl6::Take; use warnings; use strict; use Carp; our $VERSION = '0.04'; our @GATHER; sub gather (&) { # We used to push and pop ourselves, but local's easier for cleanup # purposes, and since the gather stack only contains references to the # takelists, copying it isn't expensive. Unless you have like a couple # thousand nested gathers, in which case you're beyond my help. local @GATHER = (@GATHER, []); # Here needs to come some trick to see the code didn't explicitly say # "return". But that's presumed impossible in pure Perl 5. shift->(); return @{ $GATHER[-1] }; } sub take (@) { Carp::croak("take with no gather") unless @GATHER; Carp::confess("internal error: gather cell not a listref") unless ref $GATHER[-1] eq 'ARRAY'; Carp::croak('take with no args, did you mean "take $_"?') unless @_; push @{ $GATHER[-1] }, @_; return @_; # for possible en passant assignment } sub import { my $caller = caller; no strict; *{"$caller\::gather"} = \&gather; *{"$caller\::take"} = \&take; } 1; __END__