10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-19 19:52:15 +02:00
quantum_package/ocaml/Charge.mli

14 lines
284 B
OCaml
Raw Normal View History

2014-10-25 21:24:21 +02:00
type t = float with sexp
2014-10-07 19:33:11 +02:00
(** Float conversion functions *)
2014-10-07 19:33:11 +02:00
val to_float : t -> float
val of_float : float -> t
(** Int conversion functions *)
val to_int : t -> int
2014-10-07 19:33:11 +02:00
val of_int : int -> t
(** String conversion functions *)
val to_string: t -> string
2014-10-07 19:33:11 +02:00
val of_string: string -> t