File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Array/is_empty.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::is_empty;
2             our $VERSION = '2.2203';
3              
4 3     3   1906 use strict;
  3         9  
  3         96  
5 3     3   16 use warnings;
  3         6  
  3         82  
6              
7 3     3   17 use Moose::Role;
  3         7  
  3         36  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 10     10   31 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 10     10   23 my $self = shift;
15 10         29 my ($slot_access) = @_;
16              
17 10         90 return '@{ (' . $slot_access . ') } ? 0 : 1';
18             }
19              
20 3     3   24 no Moose::Role;
  3         12  
  3         13  
21              
22             1;