pub trait Set: Send + Sync {
// Required methods
fn contains(&self, v: &dyn Array, negated: bool) -> Result<BooleanArray>;
fn has_nulls(&self) -> bool;
}Expand description
A type-erased container of array elements
pub trait Set: Send + Sync {
// Required methods
fn contains(&self, v: &dyn Array, negated: bool) -> Result<BooleanArray>;
fn has_nulls(&self) -> bool;
}A type-erased container of array elements