add the splice method, a generalization of insert
Yuval Kogman [Mon, 19 May 2008 08:04:34 +0000 (08:04 +0000)]
lib/MooseX/AttributeHelpers/MethodProvider/Array.pm

index 7366081..3ea71b4 100644 (file)
@@ -115,7 +115,26 @@ sub insert : method {
         };
     }    
 }
+
+sub splice : method {
+    my ($attr, $reader, $writer) = @_;
+    if ($attr->has_type_constraint && $attr->type_constraint->isa('Moose::Meta::TypeConstraint::Parameterized')) {
+        my $container_type_constraint = $attr->type_constraint->type_parameter;
+        return sub { 
+            my ( $self, $i, $j, @elems ) = @_;
+            ($container_type_constraint->check($_)) 
+                || confess "Value " . (defined($_) ? $_ : 'undef') . " did not pass container type constraint" for @elems;
+            CORE::splice @{$self->$reader()}, $i, $j, @elems;
+        };                    
+    }
+    else {                
+        return sub {
+            my ( $self, $i, $j, @elems ) = @_;
+            CORE::splice @{$self->$reader()}, $i, $j, @elems;
+        };
+    }    
+}
+
 1;
 
 __END__
@@ -164,6 +183,8 @@ see those provied methods, refer to that documentation.
 
 =item B<insert>
 
+=item B<splice>
+
 =back
 
 =head1 BUGS