terminal and fatal modules, cleaner hiding of FromStdlib functions and renamed exposed module to general
This commit is contained in:
12
lib/float.ml
12
lib/float.ml
@@ -1,11 +1,11 @@
|
||||
open FromStdlib open Exposed
|
||||
open General
|
||||
|
||||
let ( + ) a b = stdlib_plus_float a b
|
||||
let ( + ) a b = FromStdlib.plus_float a b
|
||||
|
||||
let ( - ) a b = stdlib_minus_float a b
|
||||
let ( - ) a b = FromStdlib.minus_float a b
|
||||
|
||||
let ( * ) a b = stdlib_multiply_float a b
|
||||
let ( * ) a b = FromStdlib.multiply_float a b
|
||||
|
||||
let ( / ) a b = stdlib_divide_float a b
|
||||
let ( / ) a b = FromStdlib.divide_float a b
|
||||
|
||||
let of_string = stdlib_float_of_string_opt
|
||||
let of_string = FromStdlib.float_of_string_opt
|
||||
|
||||
Reference in New Issue
Block a user