Type alias Curry2<T, U, R>

Curry2<T, U, R>: ((x) => ((y) => R))

Type Parameters

  • T

  • U

  • R

Type declaration

    • (x): ((y) => R)
    • A curried function that takes exactly two arguments.

      Parameters

      • x: T

      Returns ((y) => R)

        • (y): R
        • Parameters

          • y: U

          Returns R

Generated using TypeDoc