Extensions for java.util.stream.Stream
Platform and version requirements: JVM (1.2), JRE8 (1.2)
Creates a Sequence instance that wraps the original stream iterating through its elements.
fun <T> Stream<T>.asSequence(): Sequence<T>
Platform and version requirements: JVM (1.2), JRE8 (1.2)
Returns a List containing all elements produced by this stream.
fun <T> Stream<T>.toList(): List<T>