Skip to content

Commit 0d6dafa

Browse files
committed
Add while let to the reference
Closes #17687
1 parent b5db97b commit 0d6dafa

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/doc/reference.md

+12
Original file line numberDiff line numberDiff line change
@@ -3511,6 +3511,18 @@ of a condition expression it expects a refutable let statement. If the value of
35113511
expression on the right hand side of the let statement matches the pattern, the corresponding
35123512
block will execute, otherwise flow proceeds to the first `else` block that follows.
35133513

3514+
### While let loops
3515+
3516+
```{.ebnf .gram}
3517+
while_let_expr : "while" "let" pat '=' expr '{' block '}' ;
3518+
```
3519+
3520+
A `while let` loop is semantically identical to a `while` loop but in place of a
3521+
condition expression it expects a refutable let statement. If the value of the
3522+
expression on the right hand side of the let statement matches the pattern, the
3523+
loop body block executes and control returns to the pattern matching statement.
3524+
Otherwise, the while expression completes.
3525+
35143526
### Return expressions
35153527

35163528
```{.ebnf .gram}

0 commit comments

Comments
 (0)