Skip to content

Iterator interface on IntervalSet #222

@ahjulstad

Description

@ahjulstad

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions