Available on crate feature compute_filter only.
Expand description

Contains operators to filter arrays such as filter.

Functions

Returns a prepared function optimized to filter multiple arrays. Creating this function requires time, but using it is faster than filter when the same filter needs to be applied to multiple arrays (e.g. a multiple columns).

Filters an Array, returning elements matching the filter (i.e. where the values are true).

Returns a new Chunk with arrays containing only values matching the filter. This is a convenience function: filter multiple columns is embarassingly parallel.

Type Definitions

Function that can filter arbitrary arrays