interface IMaybeStatic {
    Just: ISomeStatic;
    None: INoneStatic;
    Nothing: INoneStatic;
    Some: ISomeStatic;
    none: INoneStatic;
    of: ISomeStatic;
    pure: ISomeStatic;
    some: ISomeStatic;
    unit: ISomeStatic;
    fromEmpty<V>(val: undefined | null | V): Maybe<V>;
    fromFalsy<V>(val: undefined | null | V): Maybe<V>;
    fromNull<V>(val: undefined | null | V): Maybe<V>;
    fromUndefined<V>(val: undefined | V): Maybe<V>;
    isInstance(target: any): target is Maybe<any>;
    isOfType(target: any): boolean;
}

Hierarchy-Diagram

UML class diagram of IMaybeStatic
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

Nothing: INoneStatic

Methods

  • Type Parameters

    • V

    Parameters

    • val: undefined | null | V

    Returns Maybe<V>

  • Type Parameters

    • V

    Parameters

    • val: undefined | null | V

    Returns Maybe<V>

  • Type Parameters

    • V

    Parameters

    • val: undefined | null | V

    Returns Maybe<V>

  • Type Parameters

    • V

    Parameters

    • val: undefined | V

    Returns Maybe<V>

  • Parameters

    • target: any

    Returns target is Maybe<any>

  • Parameters

    • target: any

    Returns boolean