Beginning of dzilization
[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
910684ee 8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Reader' => {
13 -excludes => [
14 qw(
15 _minimum_arguments
16 _maximum_arguments
17 _inline_check_arguments
18 )
19 ],
20 },
21 'Moose::Meta::Method::Accessor::Native::Array';
910684ee 22
a7821be5 23sub _minimum_arguments { 1 }
24
25sub _maximum_arguments { 1 }
910684ee 26
27sub _inline_check_arguments {
a7821be5 28 my $self = shift;
29
30 return $self->_inline_check_var_is_valid_index('$_[0]');
910684ee 31}
32
33sub _return_value {
53a4677c 34 my $self = shift;
35 my ($slot_access) = @_;
910684ee 36
53a4677c 37 return $slot_access . '->[ $_[0] ]';
910684ee 38}
39
401;