10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-07-11 22:03:37 +02:00
QCaml/Nuclei/Charge.mli

14 lines
282 B
OCaml
Raw Normal View History

2018-02-20 23:54:48 +01:00
type t = private float
2018-01-02 22:02:01 +01:00
(** 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