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

7 lines
151 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
val to_float : t -> float
val to_string : t -> string
val of_string : string -> t