9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-01 02:05:18 +02:00
qp2/ocaml/Charge.mli
2019-01-25 11:39:31 +01:00

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