You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> for i in typemin(Int):typemax(Int)
i == typemin(Int) && (println(i); break)
end
julia> for i in typemin(Int32):typemax(Int32)
i == typemin(Int32) && (println(i); break)
end
-2147483648
Presumably this is due to the conversion to Int.
If this is not fixable should
typemin(Int):typemax(Int)
be disallowed or warned about in the docs (perhaps it is already)?The text was updated successfully, but these errors were encountered: