-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Any reason not to implement the iterator interface on the intervalset?
I wanted to do things like
sum( (span(s) for s in u) )
but that doesn't work, I need to explicitly convert like this using
sum( (span(s) for s in convert(Array, u)) )
As the convert
function is intended to be called implicitly; it should still be the same data, it feels like u
and convert(Array, u)
should be very similar, but it doesn't.
The following three lines is all the is needed. Does it make sense to add?
Base.IteratorSize(i::Intervals.IntervalSet) = Base.SizeUnknown()
Base.iterate(i::Intervals.IntervalSet) = Base.iterate(i.items)
Base.iterate(i::Intervals.IntervalSet, state) = Base.iterate(i.items, state)
bjarthur
Metadata
Metadata
Assignees
Labels
No labels