We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mask is a compute function that takes a boolean array and returns all rows marked true.
Take function should delegate to mask if the indices array is strict sorted.
(Equivalent of "take" but with booleans)
The text was updated successfully, but these errors were encountered:
Add FilterFn trait + default implementation (#458)
9fa2f6e
Implement `filter` and corresponding `FilterFn` array trait See #439
This was added in #458 , using the name filter rather than mask.
filter
Currently it's implemented using the arrow_select::filter kernel, there is ongoing work to improve the performance, see #470
arrow_select::filter
Sorry, something went wrong.
No branches or pull requests
Mask is a compute function that takes a boolean array and returns all rows marked true.
Take function should delegate to mask if the indices array is strict sorted.
(Equivalent of "take" but with booleans)
The text was updated successfully, but these errors were encountered: