mona-dish
    Preparing search index...

    Interface IIdentity<T>

    a stateful functor which holds a value upn which a function can be applied

    as value holder of type T

    interface IIdentity<T> {
        value: T;
        map<R>(fn: (data: T) => R): IFunctor<R>;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    value: T

    Methods