mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
14 lines
284 B
OCaml
14 lines
284 B
OCaml
type t = float with sexp
|
|
|
|
(** 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
|