• Takes a funcation of any arity and returns a curried function that ignores all but the first three parameters.

    Type Parameters

    • T

    • R

    Parameters

    Returns ((x) => ((y) => ((z) => R)))

      • (x): ((y) => ((z) => R))
      • Parameters

        • x: T

        Returns ((y) => ((z) => R))

          • (y): ((z) => R)
          • Parameters

            • y: T

            Returns ((z) => R)

              • (z): R
              • Parameters

                • z: T

                Returns R

    Alias

    curry3

Generated using TypeDoc