Navigation
API > API/Runtime > API/Runtime/VerseCompiler
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.
| Name | uLang::EComparability |
| Type | enum |
| Header File | /Engine/Source/Runtime/VerseCompiler/Public/uLang/Semantics/SemanticTypes.h |
| Include Path | #include "uLang/Semantics/SemanticTypes.h" |
Syntax
namespace uLang
{
enum EComparability
{
Incomparable,
Comparable,
ComparableAndHashable,
}
}
Values
| Name | Remarks |
|---|---|
| Incomparable | |
| Comparable | |
| ComparableAndHashable |