All native array methods are being inlined.
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / count.pm
CommitLineData
f7fd22b6 1package Moose::Meta::Method::Accessor::Native::Array::count;
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
a7821be5 12sub _maximum_arguments { 0 }
13
f7fd22b6 14sub _return_value {
15 my $self = shift;
16 my $slot_access = shift;
17
18 return "scalar \@{ $slot_access }";
19}
20
211;