You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A `while` loop expression allows repeating the evaluation of a block while a set of conditions remain true.
59
59
60
-
r[expr.loop.while.syntax]
61
-
The syntax of a `while` expression is a sequence of one or more condition operands separated by `&&`, followed by a [BlockExpression].
62
-
63
60
r[expr.loop.while.condition]
64
61
Condition operands must be either an [Expression] with a [boolean type] or a conditional `let` match. If all of the condition operands evaluate to `true` and all of the `let` patterns successfully match their [scrutinee]s, then the loop body block executes.
0 commit comments