ZipWithExtension<T> extension

Extends the Stream class with the ability to zip one Stream with another.

on

Methods

zipWith<S, R>(Stream<S> other, R zipper(T t, S s)) Stream<R>
Returns a Stream that combines the current stream together with another stream using a given zipper function.