@[inline]
Transforms a function from pairs into an equivalent two-parameter function.
Examples:
Function.curry (fun (x, y) => x + y) 3 5 = 8
Function.curry Prod.swap 3 "five" = ("five", 3)
Equations
- Function.curry f a b = f (a, b)
@[inline]
Transforms a two-parameter function into an equivalent function from pairs.
Examples:
Function.uncurry List.drop (1, ["a", "b", "c"]) = ["b", "c"]
[("orange", 2), ("android", 3) ].map (Function.uncurry String.take) = ["or", "and"]
Equations
- Function.uncurry f a = f a.fst a.snd