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

    Type Alias SemiGroupal<F>

    A type class that can make two values into a pair-value of two, over F.

    type SemiGroupal<F> = {
        product: <A>(
            fa: Get1<F, A>,
        ) => <B>(fb: Get1<F, B>) => Get1<F, Tuple.Tuple<A, B>>;
    }

    Type Parameters

    • F
    Index

    Properties

    Properties

    product: <A>(
        fa: Get1<F, A>,
    ) => <B>(fb: Get1<F, B>) => Get1<F, Tuple.Tuple<A, B>>

    Makes a pair-value of two on F.

    Type Declaration