mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 12:43:48 +01:00
14 lines
291 B
OCaml
14 lines
291 B
OCaml
type t = float [@@deriving 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
|