Function curryTuple5

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

    Type Parameters

    • A

    • B

    • C

    • D

    • E

    • F

    Parameters

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

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

          Returns F

    Returns ((_) => ((_) => ((_) => ((_) => ((_) => F)))))

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

        • _: A

        Returns ((_) => ((_) => ((_) => ((_) => F))))

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

            • _: B

            Returns ((_) => ((_) => ((_) => F)))

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

                • _: C

                Returns ((_) => ((_) => F))

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

                    • _: D

                    Returns ((_) => F)

                      • (_): F
                      • Parameters

                        • _: E

                        Returns F

Generated using TypeDoc