Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overflow/panic problem in Step and ExactSizeIterator for Range<BigInt> #20981

Closed
sellibitze opened this issue Jan 12, 2015 · 1 comment · Fixed by #21258
Closed

Overflow/panic problem in Step and ExactSizeIterator for Range<BigInt> #20981

sellibitze opened this issue Jan 12, 2015 · 1 comment · Fixed by #21258

Comments

@sellibitze
Copy link
Contributor

In the trait Step we have the method

fn steps_between(start: &Self, end: &Self) -> Option<usize>;

which is supposed to handle the integer overflow case with None.

Range<Idx> comes with the following size_hint function in its Iterator<Idx> implementation:

fn size_hint(&self) -> (uint, Option<uint>) {
    if let Some(hint) = Step::steps_between(&self.start, &self.end) {
        (hint, Some(hint))
    } else {
        (0, None)
    }
}

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:

fn len(&self) -> uint {
    let (lower, upper) = self.size_hint();
    assert_eq!(upper, Some(lower));
    lower
}

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> {}

cc @aturon @nick29581

@aturon
Copy link
Member

aturon commented Jan 21, 2015

Note: this will be resolved in #21258, which removes Step (in favor of direct, custom iterator implementations for e.g. bignums).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants