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]; }
This queue is for tickets about the autobox-Core CPAN distribution.
The Basics
People
|
Bug Information
|