10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-25 14:42:06 +02:00
QCaml/Utils/Positive_float.ml

13 lines
178 B
OCaml

type t = float
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