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
i get a silent overflow when converting float64 to int32 julia> convert(Int32, 2.0^32-1) -1
The text was updated successfully, but these errors were encountered:
Related to #855. The intrinsics exist to make this an optionally checked operation, but I don't think they're hooked up to anything yet.
Sorry, something went wrong.
As of now, Float{32,64}->Int64 and Float32->Int32 are properly checked, but Float64->Int32 is not.
1170b37
No branches or pull requests
i get a silent overflow when converting float64 to int32
julia> convert(Int32, 2.0^32-1)
-1
The text was updated successfully, but these errors were encountered: