interface IEitherStatic {
    Left: monet.ILeftStatic;
    Right: monet.IRightStatic;
    left: monet.ILeftStatic;
    of: monet.IRightStatic;
    pure: monet.IRightStatic;
    right: monet.IRightStatic;
    unit: monet.IRightStatic;
    fromPromise<V, E>(promise: Promise<V>): Promise<monet.Either<E, V>>;
    fromTry<V, E>(fn: (() => V)): monet.Either<E, V>;
    isInstance(target: any): target is monet.Either<any, any>;
    isOfType(target: any): boolean;
}

Hierarchy-Diagram

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

Hierarchy (view full)

Properties

Methods

  • Type Parameters

    Parameters

    • fn: (() => V)
        • (): V
        • Returns V

    Returns monet.Either<E, V>

  • Parameters

    • target: any

    Returns target is monet.Either<any, any>

  • Parameters

    • target: any

    Returns boolean