NAME
Sort::NoCase - Case-insensitive sort
SYNOPSIS
use Sort::NoCase qw(sorti);
@sorted = sorti qw(ABC def JKL ghi PQRS mno);
$, = "\n";
print @sorted;
__OUTPUT__
ABC
def
ghi
JKL
mno
PQRS
DESCRIPTION
Sort::NoCase exports the sorti() function upon request which will case-insensitively sort alphanumerical items.
EXPORT
sorti()
is exportable.