Remove another empty class in the native array inheritance hierarchy
[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.13';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Moose::Meta::Method::Accessor::Native::Reader';
11
12 sub _maximum_arguments { 0 }
13
14 sub _return_value {
15     my ( $self, $slot_access ) = @_;
16
17     return "scalar \@{ $slot_access }";
18 }
19
20 1;