File Coverage

lib/Class/Array.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             ##----------------------------------------------------------------------------
2             ## Class Generic - ~/lib/Class/Array.pm
3             ## Version v0.1.2
4             ## Copyright(c) 2022 DEGUEST Pte. Ltd.
5             ## Author: Jacques Deguest <jack@deguest.jp>
6             ## Created 2022/02/27
7             ## Modified 2022/03/07
8             ## All rights reserved
9             ##
10             ## This program is free software; you can redistribute it and/or modify it
11             ## under the same terms as Perl itself.
12             ##----------------------------------------------------------------------------
13             BEGIN
14             {
15             use strict;
16 2     2   29628199 use warnings;
  2         10  
  2         82  
17 2     2   18 use parent qw( Module::Generic::Array );
  2         7  
  2         98  
18 2     2   13 our $VERSION = 'v0.1.2';
  2         8  
  2         23  
19 2     2   221 };
20              
21             1;
22              
23              
24             =encoding utf8
25              
26             =head1 NAME
27              
28             Class::Array - An Array Object Class
29              
30             =head1 SYNOPSIS
31              
32             use Class::Array;
33             my $a = Class::Array->new;
34              
35             =head1 VERSION
36              
37             v0.1.2
38              
39             =head1 DESCRIPTION
40              
41             This package provides a versatile array class object for the manipulation and chaining of arrays.
42              
43             See L<Module::Generic::Array> for more information.
44              
45             =head1 SEE ALSO
46              
47             L<Class::Generic>, L<Class::Array>, L<Class::Scalar>, L<Class::Number>, L<Class::Boolean>, L<Class::Assoc>, L<Class::File>, L<Class::DateTime>, L<Class::Exception>, L<Class::Finfo>, L<Class::NullChain>, L<Class::DateTime>
48              
49             =head1 AUTHOR
50              
51             Jacques Deguest E<lt>F<jack@deguest.jp>E<gt>
52              
53             =head1 COPYRIGHT & LICENSE
54              
55             Copyright (c) 2022 DEGUEST Pte. Ltd.
56              
57             You can use, copy, modify and redistribute this package and associated
58             files under the same terms as Perl itself.
59              
60             =cut