Wrapper around IterableIterator interface offering a set of helpers to deal with iterations in a simple way
IterableIterator
Since 0.0.7
Create a Stream based on g
g
Underlying data of the Stream
Drop n first elements of the Stream
n
WARNING: It closes the current stream
Number of elements to drop
Since 0.0.1
Drop elements from the Stream while f(element) === true
f(element) === true
Drop condition
Check whether all elements of the Stream are successful for f
f
Condition to check
Filter elements of the Stream
Elements to keep
Since 1.23.0
Flat map all elements of the Stream using f
Mapper function
Take the nth element of the Stream of the last (if it does not exist)
nth
Position of the element to extract
Since 0.0.12
Check whether one of the elements of the Stream is successful for f
Join others Stream to the current Stream
others
WARNING: It closes the current stream and the other ones (as soon as it iterates over them)
Rest
Streams to join to the current Stream
Map all elements of the Stream using f
Take n first elements of the Stream
Number of elements to take
Take elements from the Stream while f(element) === true
Take condition
Static
Create an empty stream of T
Create a stream of T from a variable number of elements
Elements used to create the Stream
Since 2.12.0
Wrapper around
IterableIterator
interface offering a set of helpers to deal with iterations in a simple wayRemarks
Since 0.0.7