File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Array/grep.pm
Criterion Covered Total %
statement 22 22 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod n/a
total 31 31 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Array::grep;
2             our $VERSION = '2.2206';
3              
4 5     5   3597 use strict;
  5         15  
  5         170  
5 5     5   35 use warnings;
  5         12  
  5         219  
6              
7 5     5   30 use Params::Util ();
  5         11  
  5         78  
8              
9 5     5   28 use Moose::Role;
  5         13  
  5         35  
10              
11             with 'Moose::Meta::Method::Accessor::Native::Reader';
12              
13 20     20   78 sub _minimum_arguments { 1 }
14              
15 20     20   69 sub _maximum_arguments { 1 }
16              
17             sub _inline_check_arguments {
18 20     20   72 my $self = shift;
19              
20             return (
21 20         90 'if (!Params::Util::_CODELIKE($_[0])) {',
22             $self->_inline_throw_exception( InvalidArgumentToMethod =>
23             'argument => $_[0],'.
24             'method_name => "grep",'.
25             'type_of_argument => "code reference",'.
26             'type => "CodeRef",',
27             ) . ';',
28             '}',
29             );
30             }
31              
32             sub _return_value {
33 20     20   42 my $self = shift;
34 20         66 my ($slot_access) = @_;
35              
36 20         205 return 'grep { $_[0]->() } @{ (' . $slot_access . ') }';
37             }
38              
39 5     5   45 no Moose::Role;
  5         15  
  5         48  
40              
41             1;