document behavior of splice(@ary) (from Gisle Aas)
Gurusamy Sarathy [Sat, 19 Feb 2000 17:35:50 +0000 (17:35 +0000)]
p4raw-id: //depot/perl@5152

pod/perlfunc.pod

index d384249..578d62e 100644 (file)
@@ -4182,6 +4182,8 @@ well-defined.
 
 =item splice ARRAY,OFFSET
 
+=item splice ARRAY
+
 Removes the elements designated by OFFSET and LENGTH from an array, and
 replaces them with the elements of LIST, if any.  In list context,
 returns the elements removed from the array.  In scalar context,
@@ -4189,7 +4191,9 @@ returns the last element removed, or C<undef> if no elements are
 removed.  The array grows or shrinks as necessary.
 If OFFSET is negative then it starts that far from the end of the array.
 If LENGTH is omitted, removes everything from OFFSET onward.
-If LENGTH is negative, leave that many elements off the end of the array.
+If LENGTH is negative, leaves that many elements off the end of the array.
+If both OFFSET and LENGTH are omitted, removes everything.
+
 The following equivalences hold (assuming C<$[ == 0>):
 
     push(@a,$x,$y)     splice(@a,@a,0,$x,$y)