Trait bloom::ASMS [] [src]

pub trait ASMS {
    fn insert<T: Hash>(&mut self, item: &T) -> bool;
    fn contains<T: Hash>(&self, item: &T) -> bool;
    fn clear(&mut self);
}

Stanard filter functions

Required Methods

Implementors