Closed
Description
Some implementations of Iterator
don’t override the size_hint
method (and keep the conservative (0, None)
default), but should. This includes at least:
impl<A: Int> Iterator for StepBy<A, ::ops::Range<A>>
impl<A: Int> Iterator for ::ops::RangeFrom<A>
impl<A: Int> Iterator for RangeStepInclusive<A>