Control Flow Operations
| Name | Version | Description |
|---|---|---|
| If/Else | 0.0.1 | Allows branching dependent on a boolean condition. |
| Select | 0.0.1 | Alternate syntax for a series of if-elses |
| While | 0.0.1 | Repeats a portion of code so long as a boolean condition evaluates to true. |
| For | 1.3.4 | Repeats a portion of code so long as a condition is true which is updated at the end of each iteration |
| Match | 0.0.1 | Allows for pattern matching on a sum type |
See Also
- Channel-Specific Control Flow Operations
- Accept
- AcceptWhile
- AcceptIf
- Offer