10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-09-12 22:48:31 +02:00
QCaml/Nuclei/Charge.mli

13 lines
270 B
OCaml

(** This type should be used for all charges in the program (electrons, nuclei,...). *)
type t = private float
val to_float : t -> float
val of_float : float -> t
val to_int : t -> int
val of_int : int -> t
val to_string: t -> string
val of_string: string -> t