Trait collection::SetOpsCheckSum [] [src]

pub trait SetOpsCheckSum<T> where Self: SetOps<T> {
    fn union(&mut self, b: &mut Self) -> Self;
}

Set operations on Checksummed sets

Required Methods

Return a new Collection, that is the union of self and b

Implementors