Why does (group-by identity (range 1 50)) return results like
{32 [32], 1 [1], 33 [33], 2 [2], 34 [34], 3 [3], 35 [35]...
Is it multi-threading related? Is there any way around it?
...and does it break it's contract?
Returns a map of the elements of coll keyed by the result of f on each element. The value at each key will be a vector of the corresponding elements, in the order they appeared in coll.