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

    Variable reduceRConst

    reduceR: <A, B>(
        reducer: (a: A) => (b: B) => B,
    ) => (fa: readonly A[]) => (b: B) => B = ...

    Reduces the elements of array by reducer from right-side.

    Type Declaration

      • <A, B>(reducer: (a: A) => (b: B) => B): (fa: readonly A[]) => (b: B) => B
      • Type Parameters

        • A
        • B

        Parameters

        • reducer: (a: A) => (b: B) => B

          The reducer called with A and B.

        Returns (fa: readonly A[]) => (b: B) => B

        The folded value.