interface Bind<T> {
    bind<V>(fn: ((val: T) => monet.Bind<V>)): monet.Bind<V>;
    chain<V>(fn: ((val: T) => monet.Bind<V>)): monet.Bind<V>;
    fantasy-land/chain?<V>(fn: ((val: T) => monet.Chain<V>)): monet.Chain<V>;
    flatMap<V>(fn: ((val: T) => monet.Bind<V>)): monet.Bind<V>;
    join<V>(): monet.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

    Returns monet.Bind<V>