Function curryTuple4

  • Transforms the given function of four arguments from "tuple curried" format to curried one.

    Type Parameters

    • A

    • B

    • C

    • D

    • E

    Parameters

    • _: ((_) => E)
        • (_): E
        • Parameters

          • _: [A, B, C, D]

          Returns E

    Returns ((_) => ((_) => ((_) => ((_) => E))))

      • (_): ((_) => ((_) => ((_) => E)))
      • Parameters

        • _: A

        Returns ((_) => ((_) => ((_) => E)))

          • (_): ((_) => ((_) => E))
          • Parameters

            • _: B

            Returns ((_) => ((_) => E))

              • (_): ((_) => E)
              • Parameters

                • _: C

                Returns ((_) => E)

                  • (_): E
                  • Parameters

                    • _: D

                    Returns E

Generated using TypeDoc