10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-08-29 15:53:41 +02:00
QCaml/Nuclei/Element.mli

16 lines
336 B
OCaml

exception ElementError of string
type t
(** String conversion functions *)
val of_string : string -> t
val to_string : t -> string
val to_long_string : t -> string
(** Properties *)
val to_charge : t -> Charge.t
val of_charge : Charge.t -> t
val covalent_radius : t -> Radius.t
val vdw_radius : t -> Radius.t
val mass : t -> Mass.t