Skip to content

Commit 3f5c9c9

Browse files
authored
Merge pull request #215 from alercah/inclusive-ranges
Document inclusive ranges.
2 parents 75b8ec9 + 547305f commit 3f5c9c9

File tree

3 files changed

+57
-34
lines changed

3 files changed

+57
-34
lines changed

src/expressions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ evaluated in the order given by their associativity.
6565
| `==` `!=` `<` `>` `<=` `>=` | Require parentheses |
6666
| `&&` | left to right |
6767
| <code>&#124;&#124;</code> | left to right |
68-
| `..` `...` | Require parentheses |
68+
| `..` `..=` | Require parentheses |
6969
| `<-` | right to left |
7070
| `=` `+=` `-=` `*=` `/=` `%=` <br> `&=` <code>&#124;=</code> `^=` `<<=` `>>=` | right to left |
7171
| `return` `break` closures | |

src/expressions/match-expr.md

+35-27
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
# `match` expressions
22

3-
> **<sup>Syntax</sup>**
4-
> _MatchExpression_ :
5-
> &nbsp;&nbsp; `match` [_Expression_]<sub>_except struct expression_</sub> `{`
6-
> &nbsp;&nbsp; &nbsp;&nbsp; [_InnerAttribute_]<sup>\*</sup>
7-
> &nbsp;&nbsp; &nbsp;&nbsp; _MatchArms_<sup>?</sup>
8-
> &nbsp;&nbsp; `}`
9-
>
10-
> _MatchArms_ :
11-
> &nbsp;&nbsp; ( _MatchArm_ `=>`
3+
> **<sup>Syntax</sup>**
4+
> _MatchExpression_ :
5+
> &nbsp;&nbsp; `match` [_Expression_]<sub>_except struct expression_</sub> `{`
6+
> &nbsp;&nbsp; &nbsp;&nbsp; [_InnerAttribute_]<sup>\*</sup>
7+
> &nbsp;&nbsp; &nbsp;&nbsp; _MatchArms_<sup>?</sup>
8+
> &nbsp;&nbsp; `}`
9+
>
10+
> _MatchArms_ :
11+
> &nbsp;&nbsp; ( _MatchArm_ `=>`
1212
> ( [_BlockExpression_] `,`<sup>?</sup>
13-
> | [_Expression_] `,` )
14-
> )<sup>\*</sup>
15-
> &nbsp;&nbsp; _MatchArm_ `=>` ( [_BlockExpression_] | [_Expression_] ) `,`<sup>?</sup>
16-
>
17-
> _MatchArm_ :
13+
> | [_Expression_] `,` )
14+
> )<sup>\*</sup>
15+
> &nbsp;&nbsp; _MatchArm_ `=>` ( [_BlockExpression_] | [_Expression_] ) `,`<sup>?</sup>
16+
>
17+
> _MatchArm_ :
1818
> &nbsp;&nbsp; [_OuterAttribute_]<sup>\*</sup> _MatchArmPatterns_ _MatchArmGuard_<sup>?</sup>
19-
>
20-
> _MatchArmPatterns_ :
21-
> &nbsp;&nbsp; `|`<sup>?</sup> _Pattern_ ( `|` _Pattern_ )<sup>*</sup>
22-
>
23-
> _MatchArmGuard_ :
24-
> &nbsp;&nbsp; `if` [_Expression_]
19+
>
20+
> _MatchArmPatterns_ :
21+
> &nbsp;&nbsp; `|`<sup>?</sup> _Pattern_ ( `|` _Pattern_ )<sup>*</sup>
22+
>
23+
> _MatchArmGuard_ :
24+
> &nbsp;&nbsp; `if` [_Expression_]
2525
2626
A `match` expression branches on a *pattern*. The exact form of matching that
2727
occurs depends on the pattern. Patterns consist of some combination of
@@ -41,7 +41,7 @@ the pattern are assigned to local variables in the arm's block, and control
4141
enters the block.
4242

4343
When the head expression is a [place expression], the match does not allocate a
44-
temporary location; however, a by-value binding may copy or move from the
44+
temporary location; however, a by-value binding may copy or move from the
4545
memory location.
4646
When possible, it is preferable to match on place expressions, as the lifetime
4747
of these matches inherits the lifetime of the place expression rather than being
@@ -118,20 +118,27 @@ match x {
118118
}
119119
```
120120

121-
Multiple match patterns may be joined with the `|` operator. A range of values
122-
may be specified with `...`. For example:
121+
Multiple match patterns may be joined with the `|` operator. An inclusive range
122+
of values may be specified with `..=`. For example:
123123

124124
```rust
125-
# let x = 2;
125+
# let x = 9;
126126
let message = match x {
127127
0 | 1 => "not many",
128-
2 ... 9 => "a few",
128+
2 ..= 9 => "a few",
129129
_ => "lots"
130130
};
131+
132+
assert_eq!(message, "a few");
131133
```
132134

133-
Range patterns only work on [`char`] and [numeric types]. A range pattern may
134-
not be a sub-range of another range pattern inside the same `match`.
135+
Other forms of [range] \(`..` for an exclusive range, or any range with one or
136+
both endpoints left unspecified) are not supported in matches. The
137+
syntax `...` is also accepted for inclusive ranges in patterns only, for
138+
backwards compatibility.
139+
140+
Range patterns only work [`char`] and [numeric types]. A range pattern may not
141+
be a sub-range of another range pattern inside the same `match`.
135142

136143
Finally, match patterns can accept *pattern guards* to further refine the
137144
criteria for matching a case. Pattern guards appear after the pattern and
@@ -157,3 +164,4 @@ let message = match maybe_digit {
157164
[numeric types]: types.html#numeric-types
158165
[_InnerAttribute_]: attributes.html
159166
[_OuterAttribute_]: attributes.html
167+
[range]: range-expr.html

src/expressions/range-expr.md

+21-6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
> &nbsp;&nbsp; | _RangeFromExpr_
77
> &nbsp;&nbsp; | _RangeToExpr_
88
> &nbsp;&nbsp; | _RangeFullExpr_
9+
> &nbsp;&nbsp; | _RangeInclusiveExpr_
10+
> &nbsp;&nbsp; | _RangeToInclusiveExpr_
911
>
1012
> _RangeExpr_ :
1113
> &nbsp;&nbsp; [_Expression_] `..` [_Expression_]
@@ -18,16 +20,25 @@
1820
>
1921
> _RangeFullExpr_ :
2022
> &nbsp;&nbsp; `..`
23+
>
24+
> _RangeExpr_ :
25+
> &nbsp;&nbsp; [_Expression_] `..=` [_Expression_]
26+
>
27+
> _RangeToExpr_ :
28+
> &nbsp;&nbsp; `..=` [_Expression_]
2129
22-
The `..` operator will construct an object of one of the `std::ops::Range` (or
23-
`core::ops::Range`) variants, according to the following table:
30+
The `..` and `..=` operators will construct an object of one of the
31+
`std::ops::Range` (or `core::ops::Range`) variants, according to the following
32+
table:
2433

2534
| Production | Syntax | Type | Range |
2635
|------------------------|---------------|------------------------------|-----------------------|
2736
| _RangeExpr_ | start`..`end | [std::ops::Range] | start &le; x &lt; end |
2837
| _RangeFromExpr_ | start`..` | [std::ops::RangeFrom] | start &le; x |
2938
| _RangeToExpr_ | `..`end | [std::ops::RangeTo] | x &lt; end |
3039
| _RangeFullExpr_ | `..` | [std::ops::RangeFull] | - |
40+
| _RangeInclusiveExpr_ | start`..=`end | [std::ops::RangeInclusive] | start &le; x &le; end |
41+
| _RangeToInclusiveExpr_ | `..=`end | [std::ops::RangeToInclusive] | x &le; end |
3142

3243
Examples:
3344

@@ -36,6 +47,8 @@ Examples:
3647
3..; // std::ops::RangeFrom
3748
..4; // std::ops::RangeTo
3849
..; // std::ops::RangeFull
50+
5..=6; // std::ops::RangeInclusive
51+
..=7; // std::ops::RangeToInclusive
3952
```
4053

4154
The following expressions are equivalent.
@@ -57,7 +70,9 @@ for i in 1..11 {
5770

5871
[_Expression_]: expressions.html
5972

60-
[std::ops::Range]: https://doc.rust-lang.org/std/ops/struct.Range.html
61-
[std::ops::RangeFrom]: https://doc.rust-lang.org/std/ops/struct.RangeFrom.html
62-
[std::ops::RangeTo]: https://doc.rust-lang.org/std/ops/struct.RangeTo.html
63-
[std::ops::RangeFull]: https://doc.rust-lang.org/std/ops/struct.RangeFull.html
73+
[std::ops::Range]: https://doc.rust-lang.org/std/ops/struct.Range.html
74+
[std::ops::RangeFrom]: https://doc.rust-lang.org/std/ops/struct.RangeFrom.html
75+
[std::ops::RangeTo]: https://doc.rust-lang.org/std/ops/struct.RangeTo.html
76+
[std::ops::RangeFull]: https://doc.rust-lang.org/std/ops/struct.RangeFull.html
77+
[std::ops::RangeInclusive]: https://doc.rust-lang.org/std/ops/struct.RangeInclusive.html
78+
[std::ops::RangeToInclusive]: https://doc.rust-lang.org/std/ops/struct.RangeToInclusive.html

0 commit comments

Comments
 (0)