The type of the break value.
The type of the continue value (defaults to void when a value is provided).
The value to return on break.
A ControlFlow in the Break state.
Creates a Break variant of ControlFlow with no value.
This overload is used when the operation exits early but doesn't produce a meaningful value.
The type of the continue value (allows type specification when chaining with Continue).
A ControlFlow<void, C> in the Break state.
Creates a
Breakvariant ofControlFlow.Use this to signal that an operation should exit early with the given value.