mona-dish
    Preparing search index...

    Interface IFunctor<T>

    IFunctor interface, defines an interface which allows to map a functor via a first order function to another functor

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

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods

    Methods