On Sat, Oct 01, 2016 at 07:57:34PM +0200, mimosinnet wrote:
: @opposite = @opposite.sort({@$^a[3]});

I'd probably write that as:

    @opposite .= sort: { $^a[3] }

or maybe just

    @opposite .= sort( *[3] );

Larry

Reply via email to