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

explicitly show how iterating over .. fails #35701

Merged
merged 3 commits into from
Aug 20, 2016

Commits on Aug 15, 2016

  1. explicitly show how iterating over .. fails

    I've also removed the `main()` wrapper, which I believe is extraneous.
    LMK if that's incorrect.
    matthew-piziak committed Aug 15, 2016
    Configuration menu
    Copy the full SHA
    377ae44 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2016

  1. RangeFull for-loop iteration fails because of IntoIterator

    Saying that "[for-loop iteration] fails because .. has no IntoIterator
    impl" is more direct than saying "...no Iterator impl" because for loops
    sugar into IntoIterator invocations. It just happens that the other
    Range* operators implement Iterator and rely on the fact that
    `IntoIterator` is implemented for `T: Iterator`.
    matthew-piziak committed Aug 16, 2016
    Configuration menu
    Copy the full SHA
    c186da7 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2016

  1. Configuration menu
    Copy the full SHA
    469b7fd View commit details
    Browse the repository at this point in the history