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.2206';
3              
4 18     18   11936 use strict;
  18         67  
  18         635  
5 18     18   127 use warnings;
  18         50  
  18         519  
6              
7 18     18   107 use Moose::Role;
  18         44  
  18         140  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 29     29   124 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 29     29   95 my $self = shift;
15 29         92 my ($slot_access) = @_;
16              
17 29         383 return '@{ (' . $slot_access . ') }';
18             }
19              
20 18     18   159 no Moose::Role;
  18         79  
  18         135  
21              
22             1;