-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Broadcasting && with missings #46252
Comments
That would make |
It's already different. julia> false .&& error("how come this is executed")
ERROR: how come this is executed
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] top-level scope
@ REPL[9]:1 For that matter, julia> missing .< 3 .< 5
missing
julia> missing < 3 < 5
ERROR: TypeError: non-boolean (Missing) used in boolean context
Stacktrace:
[1] top-level scope
@ REPL[11]:1 Fundamentally, broadcasting is a special operation, so there's bound to be semantic differences... |
those are some serious WATs. |
🤷♂️ Is that also WAT-worthy? julia> true && missing
missing
julia> missing && true
ERROR: TypeError: non-boolean (Missing) used in boolean context
And likewise I would say:
We use broadcasting on missings extensively, and the If |
I think current behavior is okay, though the below is probably a bug and should be handled.
Let me plug my package MissingsAsFalse.jl as a way to help with this. Though I dont think it supports broadcasting and it would be a great PR. |
This is not true. Your example julia> false .&& error.("how come this is executed")
false While the julia> false .&& trues(1, 4)
1×4 BitMatrix:
0 0 0 0 |
Oh! Thank you for the explanation. I had misconceptions about what the broadcasting machinery was capable of, but it makes sense in retrospect. Doesn't that mean that So... I'm guessing we should close this? |
Still a bummer that #5187 is only solved for non-missing data. |
#39594 implemented
.&&
and.||
, which is very cool, but unfortunately it does not supportmissing
values on 1.7.I know that
&&
technically does not work withmissing
either, but if the spirit of that PR is to solve #5187 by providing a&
with better operator precedence, thenmissing
support is natural...@mbauman
The text was updated successfully, but these errors were encountered: