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>using IntervalSets
julia>hash(1..2)
0x3932a21170706f90
julia>hash(OpenInterval(1,2)) # should be different0x3932a21170706f90
julia>isequal(2..1, 3..1)
true
julia>unique([2..1, 3..1]) # should be 1-element2-element Vector{ClosedInterval{Int64}}:2..13..1