Lokathor / tinyvec

Just, really the littlest Vec you could need. So smol.
https://docs.rs/tinyvec
Apache License 2.0
648 stars 49 forks source link

Implement ExactSizeIterator for ArrayVecIterator and TinyVecIterator #173

Closed sd2k closed 1 year ago

sd2k commented 1 year ago

These implementations weren't present but I'm not sure there was a reason. They seem pretty sound to me, but I'm very new to looking at this crate!

The len implementation of ArrayVecIterator is just the same as count.

Lokathor commented 1 year ago

Yeah this seems fine. I think just no one thought about it before.