List-Comprehensions
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
'AUTHOR' => 'Jeremy Cortner <jcortner@cvol.net>',
'ABSTRACT' => 'allows for list comprehensions in Perl.',
) if $] ge '5.005';
WriteMakefile(
NAME => 'List::Comprehensions',
VERSION_FROM => 'lib/List/Comprehensions.pm',
PREREQ_PM => {
'Alias' => 0,
'Array::RefElem' => 0,
'PadWalker' => 0
}, @if5005
);
lib/List/Comprehensions.pm view on Meta::CPAN
package List::Comprehensions;
use warnings;
use Carp;
# for comp2
use Alias qw(attr);
use Array::RefElem qw(av_push);
use PadWalker qw(peek_my);
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(comp1 comp2 P PF);
$VERSION = 0.13;
=head1 NAME
List::Comprehensions - allows for list comprehensions in Perl.
( run in 0.744 second using v1.01-cache-2.11-cpan-05444aca049 )