SymmetricDifference

Trait SymmetricDifference 

Source
pub trait SymmetricDifference<Rhs> {
    type Output;

    // Required method
    fn symmetric_difference(&self, other: &Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn symmetric_difference(&self, other: &Rhs) -> Self::Output

Returns the set symmetric difference of self and other.

Implementors§