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

    Variable reduceLConst

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

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

    Type Declaration

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

        • A
        • B

        Parameters

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

          The reducer called with B and A.

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

        The folded value.