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
I propose that a .. b should round a down and b up if they are irrational, so that a in a..b and b in a..b is always true. This would fix the following:
julia> π in 0..π
false
julia> π in (0..Float64(π, RoundUp))
true
The text was updated successfully, but these errors were encountered:
I propose that
a .. b
should rounda
down andb
up if they are irrational, so thata in a..b
andb in a..b
is always true. This would fix the following:The text was updated successfully, but these errors were encountered: