in reply to Re: Dereferencing woes
in thread Dereferencing woes
Even if you're saying @array = sort @array sort is probably creating a temporary list somewhere to assign to @array.From Perl 5.8.4 onwards, that particular construct is optimised to sort the array in-place, so no copying is done.
|
|---|