-1, feature creep
But I'm for defining reverse! as O(1), not really reversing anything, just treating the last element as first and first as last. (I do not know how collections are exactly implemented, so I am not sure whether this is possible.)
I'm not sure what your point is. How is that different from p Prime.each.sort.take 10? Moreover, an alternative request could be to add Array#reverse_sort{_by}.
Maybe we should consider a variation on sort that allows multiple criteria and independent sort directions?
Neither Prime.each.reverse_sort.take 10 nor Prime.each.sort.take 10 will return as there is no last value for infinite streams. You can neither reverse nor sort an infinite stream.
I believe adding the feature to Enumerable doesn't fit with its existing functionality (all beginning-of-stream oriented).
We need feedback from the submitter. Without it this issue should be closed.
Neither Prime.each.reverse_sort.take 10 nor Prime.each.sort.take 10 will return as there is no last value for infinite streams.
Of course. But you are aware that Enumerable has a sort method that acts as a shortcut to to_a.sort?
We need feedback from the submitter. Without it this issue should be closed.
The relevant question here is "should there be a dedicated way to do a reverse sort". The question of where that method should be (Array or Enumerable) is accessory.