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

Stabilize inclusive range (..=) #47813

Merged
merged 5 commits into from
Mar 15, 2018
Merged

Commits on Mar 15, 2018

  1. Stabilize inclusive_range library feature.

    Stabilize std::ops::RangeInclusive and std::ops::RangeInclusiveTo.
    kennytm committed Mar 15, 2018
    Configuration menu
    Copy the full SHA
    b5913f2 View commit details
    Browse the repository at this point in the history
  2. Stabilize inclusive_range_syntax language feature.

    Stabilize the syntax `a..=b` and `..=b`.
    kennytm committed Mar 15, 2018
    Configuration menu
    Copy the full SHA
    92d1f8d View commit details
    Browse the repository at this point in the history
  3. Stabilize dotdoteq_in_patterns language feature.

    Stabilize `match 2 { 1..=3 => {} }`.
    kennytm committed Mar 15, 2018
    Configuration menu
    Copy the full SHA
    a4d8033 View commit details
    Browse the repository at this point in the history
  4. Disallow &a..=b and box a..=b in pattern.

    They are disallowed because they have different precedence than
    expressions. I assume parenthesis in pattern will be soon stabilized and
    thus write that as suggestion directly.
    kennytm committed Mar 15, 2018
    Configuration menu
    Copy the full SHA
    6399d16 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    939cfa2 View commit details
    Browse the repository at this point in the history