Provides "syntactic sugar" for creating a `ControlFlow::Continue`.
| 221 | |
| 222 | // Provides "syntactic sugar" for creating a `ControlFlow::Continue`. |
| 223 | struct Continue |
| 224 | { |
| 225 | Continue() = default; |
| 226 | |
| 227 | template <typename T> |
| 228 | operator ControlFlow<T>() const |
| 229 | { |
| 230 | return typename ControlFlow<T>::Continue(); |
| 231 | } |
| 232 | }; |
| 233 | |
| 234 | |
| 235 | // Provides "syntactic sugar" for creating a `ControlFlow::Break`. |