Skip to content
Advertisement

Are stream elements sorted? [closed]

Is there a way to find if the elements taken from a Stream in encounter order, are all sorted in ascending order? (The stream source could be absolutely anything, from Arrays.stream() to Files.lines(), for example; obviously, it would have to be an ordered stream.)

I was thinking of something like:

JavaScript

But this isn’t quite functional style.

Update:

  1. I’m not looking to sort the stream. Just to check if it’s already sorted.
  2. I’m not interested in seeing the elements of the stream. I only want to know if they’re already sorted. So it’s ok for this to be a terminal operation.
  3. The elements are objects (not primitives) and not null.

Examples:

JavaScript

Advertisement

Answer

Stream’s Iterator can be used for this as below:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement