bump version to 1.15
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / get.pm
CommitLineData
910684ee 1package Moose::Meta::Method::Accessor::Native::Array::get;
2
3use strict;
4use warnings;
5
44babf1f 6use Class::MOP::MiniTrait;
7
efa728b4 8our $VERSION = '1.15';
910684ee 9$VERSION = eval $VERSION;
10our $AUTHORITY = 'cpan:STEVAN';
11
8b9641b8 12use Moose::Role;
13
14with 'Moose::Meta::Method::Accessor::Native::Reader' => {
15 -excludes => [
16 qw(
17 _minimum_arguments
18 _maximum_arguments
19 _inline_check_arguments
20 )
21 ],
22 },
23 'Moose::Meta::Method::Accessor::Native::Array';
910684ee 24
a7821be5 25sub _minimum_arguments { 1 }
26
27sub _maximum_arguments { 1 }
910684ee 28
29sub _inline_check_arguments {
a7821be5 30 my $self = shift;
31
32 return $self->_inline_check_var_is_valid_index('$_[0]');
910684ee 33}
34
35sub _return_value {
36 my $self = shift;
37 my $slot_access = shift;
38
a7821be5 39 return "${slot_access}->[ \$_[0] ]";
910684ee 40}
41
421;