Trait Cut

Source
pub trait Cut<Rhs = Self> {
    type Output;

    // Required method
    fn cut(&mut self, rhs: &Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn cut(&mut self, rhs: &Rhs) -> Self::Output

Returns the intersection between self and other while removing the intersection from self

Implementors§