interface Applicative<T> {
    ap<V>(afn: monet.Applicative<((val: T) => V)>): monet.Applicative<V>;
    apTo<V>(value: monet.Applicative<V>): T extends ((arg: V) => any)
        ? monet.Applicative<ReturnType<T<T>>>
        : never;
    fantasy-land/ap?<V>(afn: monet.Applicative<((val: T) => V)>): monet.Applicative<V>;
}

Type Parameters

  • T

Hierarchy-Diagram

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