-
Notifications
You must be signed in to change notification settings - Fork 991
New issue
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
"not in" operator %!in%
#4152
Comments
Actually we still need to handle |
Such a function is certainly useful! I would prefer to write it as |
I would really welcome the addition of |
I've been working on this and I'm wondering if someone can explain something for me. How does this function call get evaluated? |
That's happening here: Lines 30 to 36 in 788c585
Note that this does match the corresponding
|
FR to propose a not-in operator
Motivation is to have a single call that we could optimise. Otherwise we have to investigate unevaluated expression tree more deeply (and in a much more complex way) to know when user is doing a not-in operation.
Pseudo code in R C api
The text was updated successfully, but these errors were encountered: