Returns a Stream sorted using the given comparator.
Example:
var sorted = stream.sorted ((a, b) => { return strcmp (a, b); });
| cmp |
the comparator function. |
|
a new sorted Stream. |