Module loop_expr
Source - Break
- A
break expression, used to exit a loop, optionally with a value. - Continue
- A
continue expression, used to skip the rest of a loop iteration. - Loop
- A
loop expression, as in loop { ... }. The code inside the braces is
evaluated repeatedly until a break expression is encountered.