simpl1g commented on pull request #11584:
URL: https://github.com/apache/arrow/pull/11584#issuecomment-957356956
@kou what do you think about supporting such kind of syntax for filtering
```ruby
table.slice { |slicer| (slicer['age'] > 19) & (slicer['age'] < 23) }
```
=>
```ruby
table[(table['age'] > 19) & (table['age'] < 23)]
```
--
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]