interface IFreeStatic {
    Return: IReturnStatic;
    Suspend: ISuspendStatic;
    of: IReturnStatic;
    pure: IReturnStatic;
    unit: IReturnStatic;
    isInstance(target: any): target is monet.Free<any>;
    isOfType(target: any): boolean;
    liftF<A, FA>(fa: FA): monet.Free<A>;
}

Hierarchy-Diagram

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

  • Parameters

    • target: any

    Returns target is monet.Free<any>

  • Parameters

    • target: any

    Returns boolean

  • Type Parameters

    • A
    • FA

    Parameters

    Returns monet.Free<A>