in reply to Re^2: Schwartzian Transform and memory allocation.
in thread Schwartzian Transform and memory allocation.
I think the
sort { $a->[$variable-1] cmp $b->[$variable-1] },
line should be
sort { $a->[$variable] cmp $b->[$variable] },
The -1 was added by abigail to skip over the $_ that was tacked on at the beginning of the anon array. You're no longer doing that.
--
flounder
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Schwartzian Transform and memory allocation.
by Aristotle (Chancellor) on Jun 20, 2002 at 22:53 UTC |
In Section
Seekers of Perl Wisdom