@mikuroxina/mini-fn
    Preparing search index...

    Type Alias Apply<S>

    Apply: TypeClass.Functor.Functor<S> & {
        apply: <T, U>(fn: Get1<S, (t: T) => U>) => (t: Get1<S, T>) => Get1<S, U>;
    }

    A structure which able to evaluate a function over S.

    Type Parameters

    • S

    Type Declaration

    • Readonlyapply: <T, U>(fn: Get1<S, (t: T) => U>) => (t: Get1<S, T>) => Get1<S, U>

      Applies the function to the value over S.