use Isotope;
/// Range from the minimum to the maximum neutron number across all isotopes
///
/// Convenience constant to avoid writing the code below when this range is needed:
///
/// ```
/// use mendeleev::{Isotope, ISOTOPE_NEUTRON_NUMBER_RANGE};
/// let all_values = Isotope::iter().map(|e| e.neutron_number());
/// let min = all_values.clone().min().unwrap();
/// let max = all_values.max().unwrap();
/// assert_eq!(min..=max, ISOTOPE_NEUTRON_NUMBER_RANGE);
/// ```
pub const ISOTOPE_NEUTRON_NUMBER_RANGE: RangeInclusive = 0..=177;