enum class ComparisonCategoryResult
Description
An enumeration representing the possible results of a three-way comparison. These values map onto instances of comparison category types defined in the standard library. e.g. 'std::strong_ordering::less'.
Declared at: clang/include/clang/AST/ComparisonCategories.h:66
Enumerators
Name | Value | Comment |
---|---|---|
Equal | 0 | |
Equivalent | 1 | |
Less | 2 | |
Greater | 3 | |
Unordered | 4 | |
Last | 4 |