Free

interface Free<A> {
    @@type: string;
    ap<V>(afn: monet.Applicative<((val: A) => V)>): monet.Applicative<V>;
    apTo<V>(value: monet.Applicative<V>): A extends ((arg: V) => any)
        ? monet.Applicative<ReturnType<A<A>>>
        : never;
    bind<V>(fn: ((val: A) => monet.Free<V>)): monet.Free<V>;
    chain<V>(fn: ((val: A) => monet.Free<V>)): monet.Free<V>;
    fantasy-land/ap?<V>(afn: monet.Applicative<((val: A) => V)>): monet.Applicative<V>;
    fantasy-land/chain?<V>(fn: ((val: A) => monet.Chain<V>)): monet.Chain<V>;
    fantasy-land/map?<V>(fn: ((val: A) => V)): monet.Functor<V>;
    flatMap<V>(fn: ((val: A) => monet.Free<V>)): monet.Free<V>;
    go<FFA>(extract: ((sus: FFA) => monet.Free<A>)): A;
    join<V>(): monet.Free<V>;
    map<V>(fn: ((val: A) => V)): monet.Free<V>;
    resume<FFA>(): monet.Either<FFA, A>;
    takeLeft<X>(other: monet.Free<X>): monet.Free<A>;
    takeRight<B>(other: monet.Free<B>): monet.Free<B>;
}

Type Parameters

  • A

Hierarchy-Diagram

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

Properties

@@type: string

Methods

  • Type Parameters

    • V

    Parameters

    • fn: ((val: A) => V)
        • (val: A): V
        • Parameters

          • val: A

          Returns V

    Returns monet.Free<V>