We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5abb635 commit 07cfdb0Copy full SHA for 07cfdb0
src/core/CCFun.ml
@@ -12,7 +12,6 @@ let[@inline] and_pred f g x = f x && g x
12
let[@inline] or_pred f g x = f x || g x
13
let[@inline] compose f g x = g (f x)
14
let[@inline] compose_binop f g x y = g (f x) (f y)
15
-
16
let[@inline] curry f x y = f (x, y)
17
let[@inline] uncurry f (x, y) = f x y
18
0 commit comments