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