mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-07 06:33:39 +01:00
7 lines
151 B
OCaml
7 lines
151 B
OCaml
(** Floats >= 0. *)
|
|
type t = private float
|
|
val of_float : float -> t
|
|
val to_float : t -> float
|
|
val to_string : t -> string
|
|
val of_string : string -> t
|