in reply to Re^2: CPAN module fior common idioms?
in thread CPAN module fior common idioms?

I thought about this too, when writing my reply to Re: CPAN module fior common idioms?. But I did three distict different design choices. My sort call looks like this:

my @foo = qw/ a3 b2 r4 s1 /; print for STsort( sub { /(\d+)$/ }, sub { $_[0][1] <=> $_[1][1] }, @foo ); __END__ s1 b2 a3 r4
The differences are:

ihb

Read argumentation in its context!