Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool operator<
(
const FTextFormatString& LHS, |
Internationalization/ITextFormatArgumentModifier.h | ||
bool operator<
(
const LhsType& Lhs, |
Misc/UEOps.h | ||
| Ordering operators for FName are deliberately disabled as there is no correct default. | UObject/NameTypes.h |
operator<(const FTextFormatString &, const FTextFormatString &)
| Name | operator< |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/ITextFormatArgumentModifier.h |
| Include Path | #include "Internationalization/ITextFormatArgumentModifier.h" |
bool operator<
(
const FTextFormatString & LHS,
const FTextFormatString & RHS
)
operator<(const LhsType &, const RhsType &)
| Name | operator< |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/UEOps.h |
| Include Path | #include "Misc/UEOps.h" |
template<typename LhsType, typename RhsType>
bool operator<
(
const LhsType & Lhs,
const RhsType & Rhs
)
operator<(FName, FName)
Description
Ordering operators for FName are deliberately disabled as there is no correct default. Users should use the following to select the desired behavior:
Lexicographical comparison:
- Expression: NameA.LexicalLess(NameB)
- Predicate: FNameLexicalLess
Fast comparison:
- Expression: NameA.FastLess(NameB)
- Predicate: FNameFastLess
| Name | operator< |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/UObject/NameTypes.h |
| Include Path | #include "UObject/NameTypes.h" |
bool operator<
(
FName ,
FName
)