2/ Among the features in this release:
- everyNth(), to emit every nth element from the stream
- uniquelyOccurring(), to emit stream elements that occur a single time
- intersperse(), to put the given element between each element of the stream
- everyNth(), to emit every nth element from the stream
- uniquelyOccurring(), to emit stream elements that occur a single time
- intersperse(), to put the given element between each element of the stream
Comments
- foldIndexed(), perform a fold along with the index of each element
- scanIndexed(), perform a scan along with the index of each element
- takeUntil(), take from a stream until a predicate is met, including the first element that matches the predicate-
cross(iterable), cross(iterator), and cross(stream) to combine elements in the input stream with the given source of elements
/end