ocaml-standard-library/lib/float.ml

12 lines
236 B
OCaml
Raw Normal View History

2022-01-05 06:51:48 +00:00
open FromStdlib open Exposed
let ( + ) a b = stdlib_plus_float a b
2022-01-20 09:07:42 +00:00
let ( - ) a b = stdlib_minus_float a b
2022-01-20 09:07:42 +00:00
let ( * ) a b = stdlib_multiply_float a b
2022-01-20 09:07:42 +00:00
let ( / ) a b = stdlib_divide_float a b
2022-01-20 09:07:42 +00:00
let of_string = stdlib_float_of_string_opt