Acme::Sort::NoCase - Case-insensitive sort


NAME

Acme::Sort::NoCase - Case-insensitive sort


SYNOPSIS

 use Acme::Sort::NoCase qw(sorti);

 @sorted = sorti qw(ABC def JKL ghi PQRS mno);

 $, = "\n";
 print @sorted;

 __OUTPUT__

 ABC
 def
 ghi
 JKL
 mno
 PQRS


DESCRIPTION

Acme::Sort::NoCase exports the sorti() function upon request which will case-insensitively sort alphanumerical items.


EXPORT

sorti() is exportable.


SEE ALSO

sort in the perlfunc manpage

 Acme::Sort::NoCase - Case-insensitive sort