ALL_ISOTOPES

Constant ALL_ISOTOPES 

Source
pub const ALL_ISOTOPES: [Isotope; 3557];
Expand description

Array containing all isotopes, ordered by atomic number and then mass number

use mendeleev::Isotope;
use mendeleev::ALL_ISOTOPES;
use mendeleev::N_ISOTOPES;

ALL_ISOTOPES.iter().zip(ALL_ISOTOPES.iter().skip(1)).all(|(prev, next)|
((prev.element().atomic_number(), prev.mass_number())
< (next.element().atomic_number(), next.mass_number())));