Dandandan opened a new issue, #9408: URL: https://github.com/apache/arrow-rs/issues/9408
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** As shown in https://github.com/apache/arrow-rs/pull/9284 we can optimize filter kernels (and others that use the iterators) a bit more by implementing `fold` for the used iterators. This will generate faster code than `iter` as it can skip redundant checks and better inline. **Describe the solution you'd like** * Implement `fold` for the different iterators * use `.iter().for_each(` in consumers (e.g. `from_trusted_len_iterator`, etc.) to use it **Describe alternatives you've considered** **Additional context** -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
