bump version to 1.17
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / set.pm
1 package Moose::Meta::Method::Accessor::Native::Array::set;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.17';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use Moose::Role;
11
12 with 'Moose::Meta::Method::Accessor::Native::Array::Writer' => {
13     -excludes => [
14         qw(
15             _minimum_arguments
16             _maximum_arguments
17             _inline_check_arguments
18             _new_members
19             _inline_optimized_set_new_value
20             _return_value
21             )
22     ]
23 };
24
25 sub _minimum_arguments { 2 }
26
27 sub _maximum_arguments { 2 }
28
29 sub _inline_check_arguments {
30     my $self = shift;
31
32     return $self->_inline_check_var_is_valid_index('$_[0]');
33 }
34
35 sub _adds_members { 1 }
36
37 sub _potential_value {
38     my ( $self, $slot_access ) = @_;
39
40     return
41         "( do { my \@potential = \@{ ($slot_access) }; \$potential[ \$_[0] ] = \$_[1]; \\\@potential } )";
42 }
43
44 sub _new_members { '$_[1]' }
45
46 sub _inline_optimized_set_new_value {
47     my ( $self, $inv, $new, $slot_access ) = @_;
48
49     return "${slot_access}->[ \$_[0] ] = \$_[1]";
50 }
51
52 sub _return_value {
53     my ( $self, $slot_access ) = @_;
54
55     return "return ${slot_access}->[ \$_[0] ];";
56 }
57
58 no Moose::Role;
59
60 1;