Zachary Sunberg

Results 214 comments of Zachary Sunberg
trafficstars

> We still have counterexamples [HalfInteger](https://github.com/sostock/HalfIntegers.jl) and [N0f8](https://github.com/JuliaMath/FixedPointNumbers.jl) Those are not `Integer`s (unless I am mistaken). Keep in mind that this is only for the syntactic sugar of `..`. You...

I think it would make a lot of sense to introduce `boundstype`, and, if `eltype` is defined, it should be the type that would naturally be returned if one were...

> In what practical situations is the interval "eltype" used? Whenever an algorithm needs to deal with elements of some set but is only provided with the set itself, i.e....

> (which we know from @dlfivefifty's https://github.com/JuliaMath/IntervalSets.jl/issues/115#issuecomment-1219296524 would be Float64 smile ) Oh shoot, I misinterpreted the comment above, so it wouldn't necessarily be `Float64`. But I think `Float64` would...

> But in my example above b = typemax(Int); a = b - 1; a..b converting to Float64 gives only a single element... Well, if you construct a set like...

You can use `popdisplay` to turn it off. Moreover `pushdisplay` can be used to turn it back on again by changing the display stack.

https://docs.julialang.org/en/v1/base/io-network/#Multimedia-I/O

@hyrodium note that both of the problems in the comment above would be fixed by #122 :) I think the behavior in #122 will allow a lot of things to...

Ah, I see the issue with `Date`. That makes me agree that the `Inf` solution is not enough. Regarding `1..Inf32` and `1..Inf`, just out of curiosity, we currently have ```...