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.2205';
3              
4 18     18   13426 use strict;
  18         54  
  18         645  
5 18     18   138 use warnings;
  18         55  
  18         559  
6              
7 18     18   98 use Moose::Role;
  18         41  
  18         162  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 29     29   122 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 29     29   91 my $self = shift;
15 29         102 my ($slot_access) = @_;
16              
17 29         370 return '@{ (' . $slot_access . ') }';
18             }
19              
20 18     18   166 no Moose::Role;
  18         51  
  18         125  
21              
22             1;