interface Bind<T> {
    bind<V>(fn: ((val: T) => Bind<V>)): Bind<V>;
    chain<V>(fn: ((val: T) => Bind<V>)): Bind<V>;
    fantasy-land/chain?<V>(fn: ((val: T) => Chain<V>)): Chain<V>;
    flatMap<V>(fn: ((val: T) => Bind<V>)): Bind<V>;
    join<V>(): Bind<V>;
}

Type Parameters

  • T

Hierarchy-Diagram

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

Methods

  • Type Parameters

    • V

    Parameters

    Returns Bind<V>

  • Type Parameters

    • V

    Parameters

    Returns Bind<V>

  • Type Parameters

    • V

    Parameters

    Returns Bind<V>

  • Type Parameters

    • V

    Returns Bind<V>