Function uncurryTuple5

  • Transforms the given function of five arguments from curried format to "tuple curried" which can be used with Opt.zip5.

    Type Parameters

    • A

    • B

    • C

    • D

    • E

    • F

    Parameters

    • _: ((_) => ((_) => ((_) => ((_) => ((_) => 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

    Returns ((_) => F)

      • (_): F
      • Parameters

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

        Returns F

Generated using TypeDoc