Trait sdset::SetOperation

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

    fn into_set_buf(self) -> SetBuf<T> { ... }
}
Expand description

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