Navigation
API > API/Runtime > API/Runtime/Core
Enum that can be used as an explicit result for iterations. E.g. as the return value of visitor functions.
| Name | EIteration |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Iteration.h |
| Include Path | #include "Misc/Iteration.h" |
Syntax
enum EIteration
{
Break,
Continue,
}
Values
| Name | Remarks |
|---|---|
| Break | The loop should be stopped. |
| Continue | The loop should continue. |