pub trait FilterFn<A> { // Required method fn filter(&self, array: &A, mask: &Mask) -> VortexResult<Array>; }
Filter an array by the provided predicate.
Note that the entry-point filter functions handles Mask::AllTrue and Mask::AllFalse, leaving only Mask::Values to be handled by this function.
Mask::AllTrue
Mask::AllFalse
Mask::Values