• Creates a next call in iterable call chain that performs the next passes for each element of the given iterable.

    This call passes elements to the next call on demand, while the nextEach() one transforms them all at once, and iterates over results after that.

    Type Parameters

    • T

      Iterated elements type.

    Parameters

    • iterable: Iterable<T>

      An iterable containing elements to pass down the chain.

    Returns NextCall<IterableCallChain, [T], T>

    Next call for iterable call chain.

Generated using TypeDoc