• Apply an action that returns Either to the elements in an iterable and ignore the Right values.

    Type Parameters

    • T

    • E

    Parameters

    • elems: Iterable<T>
    • f: ((elem, idx) => Either<E, any>)
        • (elem, idx): Either<E, any>
        • Parameters

          • elem: T
          • idx: number

          Returns Either<E, any>

    Returns Either<E, void>

Generated using TypeDoc