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
false * 1//0 == 0//1
Right now false * 1//0 throws, while false * Inf == 0.0
false * 1//0
false * Inf == 0.0
The text was updated successfully, but these errors were encountered:
I think false * Inf should be NaN to match 0 * Inf.
false * Inf
NaN
0 * Inf
julia> 0 * Inf NaN
Sorry, something went wrong.
Sorry, I missed that as a special case false is intentionally a strong zero in multiplication.
false
No branches or pull requests
Right now
false * 1//0
throws, whilefalse * Inf == 0.0
The text was updated successfully, but these errors were encountered: