Navigation
API > API/Runtime > API/Runtime/VerseCompiler > API/Runtime/VerseCompiler/uLang > API/Runtime/VerseCompiler/uLang/Semantics
References
| Module | VerseCompiler |
| Header | /Engine/Source/Runtime/VerseCompiler/Public/uLang/Semantics/SemanticTypes.h |
| Include | #include "uLang/Semantics/SemanticTypes.h" |
Syntax
namespace uLang
{
enum EComparability
{
Incomparable,
Comparable,
ComparableAndHashable,
}
}
Values
| Name | Description |
|---|---|
| Incomparable | |
| Comparable | |
| ComparableAndHashable |
Remarks
Characterizes whether a type is comparable and hashable, just comparable, or incomparable. The comparable and hashable vs just comparable distinction is necessary as a temporary limitation of the FProperty-based implementation, which doesn't implement hashing for all the types it implements comparison for.