bump version to 1.19
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / count.pm
1 package Moose::Meta::Method::Accessor::Native::Array::count;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.19';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use Moose::Role;
11
12 with 'Moose::Meta::Method::Accessor::Native::Reader' =>
13     { -excludes => ['_maximum_arguments'] };
14
15 sub _maximum_arguments { 0 }
16
17 sub _return_value {
18     my ( $self, $slot_access ) = @_;
19
20     return "scalar \@{ ($slot_access) }";
21 }
22
23 no Moose::Role;
24
25 1;