Help for this page
my @sorted = ikeysort { no warnings; int $_ } @data;
my @sorted = sort { no warnings; $a <=> $b } @data;
my @sorted; { no warnings; @sorted = sort { $a <=> $b } @data; }