Either

interface Either<E, T> {
    @@type: string;
    ap<V>(eitherFn: Either<E, ((val: T) => V)>): Either<E, V>;
    apTo<V>(value: Either<E, V>): T extends ((arg: V) => any)
        ? Either<E, ReturnType<T<T>>>
        : never;
    bimap<Z, V>(leftFn: ((err: E) => Z), rightFn: ((val: T) => V)): Either<Z, V>;
    bind<V>(fn: ((val: T) => Either<E, V>)): Either<E, V>;
    cata<Z>(leftFn: ((err: E) => Z), rightFn: ((val: T) => Z)): Z;
    catchMap<F>(fn: ((err: E) => Either<F, T>)): Either<F, T>;
    chain<V>(fn: ((val: T) => Either<E, V>)): Either<E, V>;
    equals(other: Either<E, T>): boolean;
    fantasy-land/ap?<V>(afn: Applicative<((val: T) => V)>): Applicative<V>;
    fantasy-land/chain?<V>(fn: ((val: T) => Chain<V>)): Chain<V>;
    fantasy-land/equals?(other: Either<E, T>): boolean;
    fantasy-land/map?<V>(fn: ((val: T) => V)): Functor<V>;
    flatMap<V>(fn: ((val: T) => Either<E, V>)): Either<E, V>;
    fold<Z>(leftFn: ((err: E) => Z), rightFn: ((val: T) => Z)): Z;
    foldLeft<V>(initial: V): ((fn: ((acc: V, val: T) => V)) => V);
    foldRight<V>(initial: V): ((fn: ((val: T, acc: V) => V)) => V);
    forEach(fn: ((val: T) => void)): void;
    forEachLeft(fn: ((val: E) => void)): void;
    isLeft(): boolean;
    isRight(): boolean;
    join<V>(): Either<E, V>;
    left(): E;
    leftMap<F>(fn: ((leftVal: E) => F)): Either<F, T>;
    map<V>(fn: ((val: T) => V)): Either<E, V>;
    right(): T;
    swap(): Either<T, E>;
    takeLeft(m: Either<E, T>): Either<E, T>;
    takeRight(m: Either<E, T>): Either<E, T>;
    toMaybe(): Maybe<T>;
    toPromise(): Promise<T>;
    toValidation(): Validation<E, T>;
}

Type Parameters

  • E
  • T

Hierarchy-Diagram

UML class diagram of Either
Legend
icon for an interface in the UML class diagram interface
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

@@type: string

Methods

  • Type Parameters

    • Z
    • V

    Parameters

    • leftFn: ((err: E) => Z)
        • (err: E): Z
        • Parameters

          • err: E

          Returns Z

    • rightFn: ((val: T) => V)
        • (val: T): V
        • Parameters

          • val: T

          Returns V

    Returns Either<Z, V>

  • Type Parameters

    • Z

    Parameters

    • leftFn: ((err: E) => Z)
        • (err: E): Z
        • Parameters

          • err: E

          Returns Z

    • rightFn: ((val: T) => Z)
        • (val: T): Z
        • Parameters

          • val: T

          Returns Z

    Returns Z

  • Parameters

    Returns boolean

  • Type Parameters

    • V

    Parameters

    • fn: ((val: T) => V)
        • (val: T): V
        • Parameters

          • val: T

          Returns V

    Returns Functor<V>

  • Type Parameters

    • Z

    Parameters

    • leftFn: ((err: E) => Z)
        • (err: E): Z
        • Parameters

          • err: E

          Returns Z

    • rightFn: ((val: T) => Z)
        • (val: T): Z
        • Parameters

          • val: T

          Returns Z

    Returns Z

  • Type Parameters

    • V

    Parameters

    • initial: V

    Returns ((fn: ((acc: V, val: T) => V)) => V)

      • (fn: ((acc: V, val: T) => V)): V
      • Parameters

        • fn: ((acc: V, val: T) => V)
            • (acc: V, val: T): V
            • Parameters

              • acc: V
              • val: T

              Returns V

        Returns V

  • Type Parameters

    • V

    Parameters

    • initial: V

    Returns ((fn: ((val: T, acc: V) => V)) => V)

      • (fn: ((val: T, acc: V) => V)): V
      • Parameters

        • fn: ((val: T, acc: V) => V)
            • (val: T, acc: V): V
            • Parameters

              • val: T
              • acc: V

              Returns V

        Returns V

  • Parameters

    • fn: ((val: T) => void)
        • (val: T): void
        • Parameters

          • val: T

          Returns void

    Returns void

  • Parameters

    • fn: ((val: E) => void)
        • (val: E): void
        • Parameters

          • val: E

          Returns void

    Returns void

  • Returns boolean

  • Returns boolean

  • Returns E

  • Type Parameters

    • F

    Parameters

    • fn: ((leftVal: E) => F)
        • (leftVal: E): F
        • Parameters

          • leftVal: E

          Returns F

    Returns Either<F, T>

  • Type Parameters

    • V

    Parameters

    • fn: ((val: T) => V)
        • (val: T): V
        • Parameters

          • val: T

          Returns V

    Returns Either<E, V>

  • Returns T

  • Returns Either<T, E>

  • Returns Maybe<T>

  • Returns Promise<T>