stop using excludes within moose, since it's no longer necessary
[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 use Moose::Role;
7
8 with 'Moose::Meta::Method::Accessor::Native::Reader';
9
10 sub _maximum_arguments { 0 }
11
12 sub _return_value {
13     my $self = shift;
14     my ($slot_access) = @_;
15
16     return 'scalar @{ (' . $slot_access . ') }';
17 }
18
19 no Moose::Role;
20
21 1;