-
Notifications
You must be signed in to change notification settings - Fork 55
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
Short-circuiting AND for @subset #310
Comments
The solution here is to use |
The point here was meant to be more broad than just missing operations though. There are lots of
|
Ah. Thanks for the clarification. Regardless, I don't think this is particularly actionable. |
Makes sense, no sweat! I opened an issue on DataFrames directly, though I'm guessing it won't make sense there either since you can get the short-circuiting behavior if you really need it, and it's only a modest speed-up at least in my testing |
Currently, each conditional seems to be evaluated for
@subset
, it would be nice (and possibly more efficient?) to use short-circuiting evaluationAs @bkamins said on slack, one can currently get this behavior using
&&
explicitly:The text was updated successfully, but these errors were encountered: