make sure all modules have the same version
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / insert.pm
1 package Moose::Meta::Method::Accessor::Native::Array::insert;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.14';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Moose::Meta::Method::Accessor::Native::Array::Writer';
11
12 sub _minimum_arguments { 2 }
13
14 sub _maximum_arguments { 2 }
15
16 sub _adds_members { 1 }
17
18 sub _potential_value {
19     my ( $self, $slot_access ) = @_;
20
21     return
22         "( do { my \@potential = \@{ $slot_access }; splice \@potential, \$_[0], 0, \$_[1]; \\\@potential } )";
23 }
24
25 sub _new_members { '$_[1]' }
26
27 sub _inline_optimized_set_new_value {
28     my ( $self, $inv, $new, $slot_access ) = @_;
29
30     return "splice \@{ $slot_access }, \$_[0], 0, \$_[1];";
31 }
32
33 1;