in reply to Checking the Ascendency/Descendency of Numeric Array of Any Size
sub is_ascending { $_ != shift and return for sort {$a <=> $b} @_; 1; } [download]