NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Re: (Score:1)
undef.Why "item count"? Least likely! (Score:2)
I think a much more interesting thing would be a floating point value between 0 and 1 of how many adjacent pairs of items already meet the sort criteria, so "1..5" would be 1, but "reverse 1..5" would be 0.
Re: (Score:1)
That sortedness factor you propose sounds really useless.
0 + sort qw( 1 3 5 7 9 0 2 4 6 8 10 )would return 0.9. But what am I supposed to conclude from that? The list is certainly not 90% sorted, nor can I think of any other way in which this metric might be useful.OTOH, returning the item count would allow parity for
with
and
in scalar context.
And item count in scalar context is actually the majority among functions that take a l [perlmonks.org]
Re: (Score:1)
Reply to This
Parent