File Coverage

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


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Array::elements;
2             our $VERSION = '2.2203';
3              
4 18     18   10500 use strict;
  18         46  
  18         613  
5 18     18   116 use warnings;
  18         52  
  18         497  
6              
7 18     18   104 use Moose::Role;
  18         39  
  18         122  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 29     29   117 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 29     29   87 my $self = shift;
15 29         78 my ($slot_access) = @_;
16              
17 29         273 return '@{ (' . $slot_access . ') }';
18             }
19              
20 18     18   148 no Moose::Role;
  18         46  
  18         97  
21              
22             1;