Brent Dax wrote:
It just occurred to me that C<part> is almost a specialization of
C<sort>.  Consider the results if you assign without binding:

	sub comparator {
		when /hi/ { 0 }
		when /lo/ { 1 }
		default   { 2 }
	}
	
	@input = qw(high low hi lo glurgl);
	@out1  = part comparator @input;
	@out2  = sort { comparator $^a <=> comparator $^b } @input;

Identical, aren't they?
No.

@out1 has three elements, each an array reference: (['high','hi'], ['low','lo'], ['glurgl'])
@out2 has five elements, each a string: ('high', 'hi', 'low', 'lo', 'glurgl')


"If you want to propagate an outrageously evil idea, your conclusion
must be brazenly clear, but your proof unintelligible."
    --Ayn Rand, explaining how today's philosophies came to be
Hmmmmm. Sound more like:

      --Damian Conway, explaining how Perl 6 junctions came to be

;-)

Damian


Reply via email to