You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which simply forwards a possible None. Range<Idx> also implements ExactSizeIterator. But consider what the default implementation of len in ExactSizeIterator will do if it has to deal with such a None:
Clearly, this function does not expect an integer overflow. It will panic in such a case which will probably surprize some users that try to wrap things like BigInts into the Range.
I don't know how this should be handled. Perhaps using algebraic types a bit differently here would help (replacing None with Overflowed). Or perhaps we should only provide an ExactSizeIterator implementation if we can be sure that there won't be any integer overflows. This would imply an additional constraint for the Idx parameter in
impl<Idx: Clone + Step> ExactSizeIterator for Range<Idx> {}
In the trait
Step
we have the methodwhich is supposed to handle the integer overflow case with
None
.Range<Idx>
comes with the followingsize_hint
function in itsIterator<Idx>
implementation:which simply forwards a possible
None
.Range<Idx>
also implementsExactSizeIterator
. But consider what the default implementation oflen
inExactSizeIterator
will do if it has to deal with such aNone
:Clearly, this function does not expect an integer overflow. It will panic in such a case which will probably surprize some users that try to wrap things like
BigInt
s into theRange
.I don't know how this should be handled. Perhaps using algebraic types a bit differently here would help (replacing
None
withOverflowed
). Or perhaps we should only provide anExactSizeIterator
implementation if we can be sure that there won't be any integer overflows. This would imply an additional constraint for theIdx
parameter incc @aturon @nick29581
The text was updated successfully, but these errors were encountered: