[]Function lumol::sys::get_atomic_mass

pub fn get_atomic_mass(name: &str) -> Option<f64>

Get the mass of the element with the given atomic name

Example

assert_eq!(get_atomic_mass("Ti"), Some(47.867));
assert_eq!(get_atomic_mass("Ow"), None);