Function uncurryTuple4

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

    Type Parameters

    • A

    • B

    • C

    • D

    • E

    Parameters

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

          • _: A

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

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

              • _: B

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

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

                  • _: C

                  Returns ((_) => E)

                    • (_): E
                    • Parameters

                      • _: D

                      Returns E

    Returns ((_) => E)

      • (_): E
      • Parameters

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

        Returns E

Generated using TypeDoc