Navigation
API > API/Runtime > API/Runtime/uLangCore
Result returned from a visitor functor indicating how to continue or to quit early.
| Name | uLang::EVisitResult |
| Type | enum |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Common.h |
| Include Path | #include "uLang/Common/Common.h" |
Syntax
namespace uLang
{
enum EVisitResult
{
Continue = 0,
SkipChildren = 1,
Stop = 2,
}
}
Values
| Name | Remarks |
|---|---|
| Continue | |
| SkipChildren | |
| Stop |