Trait sdset::SetOperation[][src]

pub trait SetOperation<T, U>: Sized {
    fn extend_vec(self, output: &mut Vec<U>);

    fn into_set_buf(self) -> SetBuf<U> { ... }
}

Represent a type that can produce a set operation on multiple Sets.

Required Methods

Extend a Vec with the values of the Sets using this set operation.

Provided Methods

Create a SetBuf using the SetOperation::extend_vec method.

Implementors