pub trait FilterFn {
// Required method
fn filter(&self, predicate: &Array) -> VortexResult<Array>;
}
Required Methods§
Sourcefn filter(&self, predicate: &Array) -> VortexResult<Array>
fn filter(&self, predicate: &Array) -> VortexResult<Array>
Filter an array by the provided predicate.