Creates a Stream from an array but, unlike stream, allows input modifications. That's useful for operations like Stream.sortBy and Stream.shuffle which otherwise copy input to the new array.
input
Elements type
Array allowed for modifications to create stream from
A stream created from the provided modifiable array.
Creates a Stream from an array but, unlike stream, allows
input
modifications. That's useful for operations like Stream.sortBy and Stream.shuffle which otherwise copy input to the new array.