IO

interface IO<T> {
    @@type: string;
    ap<V>(ioFn: IO<((v: T) => V)>): IO<V>;
    apTo<V>(value: IO<V>): T extends ((arg: V) => any)
        ? IO<ReturnType<T<T>>>
        : never;
    bind<V>(fn: ((val: T) => IO<V>)): IO<V>;
    chain<V>(fn: ((val: T) => IO<V>)): IO<V>;
    fantasy-land/ap?<V>(afn: Applicative<((val: T) => V)>): Applicative<V>;
    fantasy-land/chain?<V>(fn: ((val: T) => Chain<V>)): Chain<V>;
    fantasy-land/map?<V>(fn: ((val: T) => V)): Functor<V>;
    flatMap<V>(fn: ((val: T) => IO<V>)): IO<V>;
    join<V>(): IO<V>;
    map<V>(fn: ((v: T) => V)): IO<V>;
    perform(): T;
    performUnsafeIO(): T;
    run(): T;
    takeLeft<X>(m: IO<X>): IO<T>;
    takeRight<V>(m: IO<V>): IO<V>;
}

Type Parameters

  • T

Hierarchy-Diagram

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

    • ioFn: IO<((v: T) => V)>

    Returns IO<V>

  • Type Parameters

    • V

    Parameters

    Returns T extends ((arg: V) => any)
        ? IO<ReturnType<T<T>>>
        : never

  • Type Parameters

    • V

    Parameters

    • fn: ((val: T) => IO<V>)
        • (val: T): IO<V>
        • Parameters

          • val: T

          Returns IO<V>

    Returns IO<V>

  • Type Parameters

    • V

    Parameters

    • fn: ((val: T) => IO<V>)
        • (val: T): IO<V>
        • Parameters

          • val: T

          Returns IO<V>

    Returns IO<V>

  • Type Parameters

    • V

    Parameters

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

          • val: T

          Returns V

    Returns Functor<V>

  • Type Parameters

    • V

    Parameters

    • fn: ((val: T) => IO<V>)
        • (val: T): IO<V>
        • Parameters

          • val: T

          Returns IO<V>

    Returns IO<V>

  • Type Parameters

    • V

    Returns IO<V>

  • Type Parameters

    • V

    Parameters

    • fn: ((v: T) => V)
        • (v: T): V
        • Parameters

          Returns V

    Returns IO<V>

  • Returns T

  • Returns T

  • Returns T

  • Type Parameters

    • X

    Parameters

    Returns IO<T>

  • Type Parameters

    • V

    Parameters

    Returns IO<V>