Work in progress on inlining native traits methods.
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / is_empty.pm
CommitLineData
f7fd22b6 1package Moose::Meta::Method::Accessor::Native::Array::is_empty;
2
3use strict;
4use warnings;
5
6our $VERSION = '1.13';
7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
10use base 'Moose::Meta::Method::Accessor::Native::Array::Reader';
11
12sub _return_value {
13 my $self = shift;
14 my $slot_access = shift;
15
16 return "\@{ $slot_access } ? 0 : 1";
17}
18
191;