Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the autobox-Core CPAN distribution.

Report information
The Basics
Id: 34765
Status: resolved
Priority: 0/
Queue: autobox-Core

People
Owner: Nobody in particular
Requestors: cho45 [...] lowreal.net
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: BUG on ARRAY->unshift
ARRAY->unshift has bug. It does not work currently. # bug implementation sub unshift (\@;@) { CORE::unshift @{$_[0]}, @_; $_[0]; } # work currectly sub unshift (\@;@) { CORE::unshift @{$_[0]}, @_[1..$#_]; $_[0]; }
On Tue Apr 08 09:35:22 2008, SATOH wrote: Show quoted text
> ARRAY->unshift has bug. It does not work currently. > > # bug implementation > sub unshift (\@;@) { CORE::unshift @{$_[0]}, @_; $_[0]; } > > # work currectly > sub unshift (\@;@) { CORE::unshift @{$_[0]}, @_[1..$#_]; $_[0]; }
Apparently fixed in 0.5