• Accumulate the elements in an iterable using a reducer function that returns Either.

    Type Parameters

    • T

    • TAcc

    • E

    Parameters

    • elems: Iterable<T>
    • accum: ((acc, val) => Either<E, TAcc>)
        • (acc, val): Either<E, TAcc>
        • Parameters

          • acc: TAcc
          • val: T

          Returns Either<E, TAcc>

    • initial: TAcc

    Returns Either<E, TAcc>

Generated using TypeDoc