Optional
Creates filtered stream. Is Lazy.
alot(users).filter(x => x.age > 20).take(3).toArray(); Copy
alot(users).filter(x => x.age > 20).take(3).toArray();
Filter is evaluated only N times, to match only 3 items.
Creates async filted stream. Same as filter, but accepts async methods, and returns awaitable stream.
Join Left Inner
Join Full Outer
Resets current stream to the beginning.
Rest
Static
Creates filtered stream. Is Lazy.
Filter is evaluated only N times, to match only 3 items.