mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-12-23 12:53:46 +01:00
15 lines
348 B
OCaml
15 lines
348 B
OCaml
(** $x \ge 0$ *)
|
|
type t = private float
|
|
|
|
(** Conversions *)
|
|
|
|
val of_float : float -> t
|
|
(** Checks that the float is non-negative. *)
|
|
|
|
val unsafe_of_float : float -> t
|
|
(** Fast conversion without checking that the float is non-negative. *)
|
|
|
|
val to_float : t -> float
|
|
val of_string : string -> t
|
|
val to_string : t -> string
|