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

Migrate `next_*` methods to return `Option` #70

Closed
wants to merge 1 commit into from

Commits on Mar 17, 2015

  1. Migrate `next_*` methods to return `Option`

    In the Rust standard library, the `next` method on the `Iterator` trait
    returns an `Option`. Prior to this commit, the `next` and `next_*`
    methods return `Err<_, ()>`. In an attempt to make some of the code more
    idiomatic, I migrated these methods to return `Option` instead.
    frewsxcv committed Mar 17, 2015
You can’t perform that action at this time.