File Coverage

blib/lib/LINQ/Grouping.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1 2     2   34 use 5.006;
  2         8  
2 2     2   11 use strict;
  2         3  
  2         41  
3 2     2   9 use warnings;
  2         3  
  2         208  
4              
5             if ( $] < 5.010000 ) {
6             require UNIVERSAL::DOES;
7             }
8              
9              
10             our $AUTHORITY = 'cpan:TOBYINK';
11             our $VERSION = '0.003';
12              
13             use Class::Tiny qw( key values );
14 2     2   913  
  2         3566  
  2         9  
15             1;
16              
17              
18             =pod
19              
20             =encoding utf-8
21              
22             =head1 NAME
23              
24             LINQ::Grouping - results of group_by
25              
26             =head1 DESCRIPTION
27              
28             The C<group_by> method of L<LINQ::Collection> returns LINQ::Grouping objects.
29             Please see the documntation in that interface.
30              
31             =begin trustme
32              
33             =item key
34              
35             =item values
36              
37             =end trustme
38              
39             =head1 BUGS
40              
41             Please report any bugs to
42             L<http://rt.cpan.org/Dist/Display.html?Queue=LINQ>.
43              
44             =head1 SEE ALSO
45              
46             L<LINQ::Collection>.
47              
48             =head1 AUTHOR
49              
50             Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
51              
52             =head1 COPYRIGHT AND LICENCE
53              
54             This software is copyright (c) 2014, 2021 by Toby Inkster.
55              
56             This is free software; you can redistribute it and/or modify it under
57             the same terms as the Perl 5 programming language system itself.
58              
59             =head1 DISCLAIMER OF WARRANTIES
60              
61             THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
62             WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
63             MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.