kpreid / exhaust

Exhaustive iteration trait in Rust
https://docs.rs/exhaust/
Apache License 2.0
13 stars 2 forks source link

Implement and require `FusedIterator` #29

Closed kpreid closed 2 months ago

kpreid commented 2 months ago

It doesn't make sense for Exhaust iterators to not implement FusedIterator, so FusedIterator should be in the bounds of the Exhaust::Iter associated type.

This will be a breaking change.

kpreid commented 2 months ago

Done in #33.