Bump version to 1.16
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / insert.pm
index 7377efc..1afdb8c 100644 (file)
@@ -3,7 +3,7 @@ package Moose::Meta::Method::Accessor::Native::Array::insert;
 use strict;
 use warnings;
 
-our $VERSION = '1.15';
+our $VERSION = '1.16';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -16,6 +16,7 @@ with 'Moose::Meta::Method::Accessor::Native::Array::Writer' => {
             _maximum_arguments
             _new_members
             _inline_optimized_set_new_value
+            _return_value
             )
     ]
 };
@@ -41,6 +42,12 @@ sub _inline_optimized_set_new_value {
     return "splice \@{ $slot_access }, \$_[0], 0, \$_[1];";
 }
 
+sub _return_value {
+    my ( $self, $slot_access ) = @_;
+
+    return "return ${slot_access}->[ \$_[0] ];";
+}
+
 no Moose::Role;
 
 1;