Function nextEach

  • Builds a next chained call that passes each provided element to the next pass.

    Note that default CallChain supported by callThru would return only the last element.

    Type Parameters

    • T

      A type of element to pass down the chain.

    Parameters

    • elements: Iterable<T>

      An iterable of elements to pass down the chain.

    Returns NextCall<CallChain, [T], T>

    A multi-call of the next pass with each element.

Generated using TypeDoc