10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 15:12:05 +02:00
QCaml/Utils/NonNegativeFloat.mli

8 lines
184 B
OCaml
Raw Normal View History

2018-02-25 00:53:09 +01:00
(** Floats >= 0. *)
2018-02-23 18:44:31 +01:00
type t = private float
val of_float : float -> t
2018-06-13 19:03:42 +02:00
val unsafe_of_float : float -> t
2018-02-23 18:44:31 +01:00
val to_float : t -> float
val to_string : t -> string
val of_string : string -> t