Skip to main content

VecExt

Trait VecExt 

Source
pub trait VecExt<T> {
    // Required method
    fn push_if_not_contained(&mut self, element: T) -> bool
       where T: PartialEq;
}

Required Methods§

Source

fn push_if_not_contained(&mut self, element: T) -> bool
where T: PartialEq,

Implementations on Foreign Types§

Source§

impl<T> VecExt<T> for Vec<T>

Source§

fn push_if_not_contained(&mut self, element: T) -> bool
where T: PartialEq,

Implementors§