in reply to Re^2: Sorting dates with the Schwartzian Transform
in thread Sorting dates with the Schwartzian Transform

... how I would know that the map {} sort {} map {} would be executed in reverse order, but I didn't find it. Any clues?

Both map and sort take a list (which is on the RHS), do some transformation of it then return the transformed list (to the LHS).

my @mapped = map { # some transform code } @unmapped; my @sorted = sort { # sorting code } @unsorted;

The ST code is just an extension of this right-to-left pattern:

I hope this makes things a bit clearer.

Cheers,

JohnGG