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 80b8a8f commit 001e72bCopy full SHA for 001e72b
prelude.ml
@@ -3,9 +3,6 @@
3
module U = ExtUnix.Specific
4
module Enum = ExtEnum
5
6
-module Int = Factor.Int
7
-module Float = Factor.Float
8
-
9
let ($) f g = fun x -> f (g x)
10
let ($$) f g = fun x y -> f (g x) (g y)
11
let (!!) = Lazy.force
prelude.mli
(** function composition : [f $ g] is equivalent to [(fun x -> f (g x))] *)
val ( $ ) : ('a -> 'b) -> ('c -> 'a) -> 'c -> 'b
0 commit comments