File Coverage

blib/lib/Data/Perl/Collection/Array.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Data::Perl::Collection::Array;
2             $Data::Perl::Collection::Array::VERSION = '0.002009';
3             # ABSTRACT: Wrapping class for Perl's built in array structure.
4              
5 9     9   57 use strictures 1;
  9         51  
  9         211  
6              
7 9     9   11423 use Role::Tiny::With;
  9         64568  
  9         883  
8              
9             with 'Data::Perl::Role::Collection::Array';
10              
11             1;
12              
13             =pod
14              
15             =encoding UTF-8
16              
17             =head1 NAME
18              
19             Data::Perl::Collection::Array - Wrapping class for Perl's built in array structure.
20              
21             =head1 VERSION
22              
23             version 0.002009
24              
25             =head1 SYNOPSIS
26              
27             use Data::Perl qw/array/;
28              
29             my $array = array(1, 2, 3);
30              
31             $array->push(5);
32              
33             $array->grep(sub { $_ > 2 })->map(sub { $_ ** 2 })->elements; # (3, 5);
34              
35             =head1 DESCRIPTION
36              
37             This class is a simple consumer of the L
38             role, which provides all functionality. You probably want to look there
39             instead.
40              
41             =head1 AUTHOR
42              
43             Matthew Phillips
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2014 by Matthew Phillips .
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut
53              
54             __END__