Next Making Programs Faster 14

"Optimizations"

        sort { lc $a cmp lc $b } @stuff;
        @sorted = map  {$_->[0]} 
                  sort {$a->[1] cmp $b->[1]} 
                  map  {[$_, lc $_]} 
                  @stuff;

Next Copyright © 2003 M. J. Dominus