data_structure_traits 0.1.12

data structure collection traits
Documentation
pub trait Collection {
    fn len(&self) -> usize;
    #[inline(always)]
    fn is_empty(&self) -> bool {
        self.len() == 0
    }
}