mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-06 22:23:42 +01:00
14 lines
282 B
OCaml
14 lines
282 B
OCaml
type t = private float
|
|
|
|
(** Float conversion functions *)
|
|
val to_float : t -> float
|
|
val of_float : float -> t
|
|
|
|
(** Int conversion functions *)
|
|
val to_int : t -> int
|
|
val of_int : int -> t
|
|
|
|
(** String conversion functions *)
|
|
val to_string: t -> string
|
|
val of_string: string -> t
|