Skip to content

Commit 001e72b

Browse files
committed
Prelude: Float and Int are now in stdlib
1 parent 80b8a8f commit 001e72b

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

prelude.ml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
module U = ExtUnix.Specific
44
module Enum = ExtEnum
55

6-
module Int = Factor.Int
7-
module Float = Factor.Float
8-
96
let ($) f g = fun x -> f (g x)
107
let ($$) f g = fun x y -> f (g x) (g y)
118
let (!!) = Lazy.force

prelude.mli

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
module U = ExtUnix.Specific
44
module Enum = ExtEnum
55

6-
module Int = Factor.Int
7-
module Float = Factor.Float
8-
96
(** function composition : [f $ g] is equivalent to [(fun x -> f (g x))] *)
107
val ( $ ) : ('a -> 'b) -> ('c -> 'a) -> 'c -> 'b
118

0 commit comments

Comments
 (0)