10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 03:15:19 +02:00
QCaml/Nuclei/Element.mli

16 lines
336 B
OCaml
Raw Normal View History

2018-01-02 22:02:01 +01:00
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