10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 03:15:19 +02:00
QCaml/Positive_float.ml

13 lines
170 B
OCaml

type t
let of_float x =
assert ( x >= 0. );
x
let to_float x = x
let to_string x = string_of_float @@ to_float x
let of_string x = of_float @@ float_of_string x