We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On RC3. This is fine:
> .!(Nullable{Bool}()) Nullable{Bool}() > Nullable() .& Nullable() Nullable{Union{}}()
but
> .!(Nullable()) Nullable{Nullable{Union{}}}() # UPDATE: because of NullableArrays
EDIT: my bad; this turns out to be another instance of type piracy in NullableArrays. However, even on a fresh 0.6 session, it yields
julia> .!(Nullable()) Nullable{Tuple{}}()
which is a bit inconsistent. Perhaps it does not matter though?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Moved from JuliaLang/julia#22444
On RC3. This is fine:
but
EDIT: my bad; this turns out to be another instance of type piracy in NullableArrays. However, even on a fresh 0.6 session, it yields
which is a bit inconsistent. Perhaps it does not matter though?
The text was updated successfully, but these errors were encountered: