Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FString
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UE_FORCEINLINE_HINT bool UEOpLessThan
(
const FString& Rhs |
Lexicographically test whether the left string is < the right stringcase insensitive | ||
UE_FORCEINLINE_HINT bool UEOpLessThan
(
const CharType* Rhs |
Lexicographically test whether the left string is < the right stringcase insensitive |
UEOpLessThan(const FString &)
Description
Lexicographically test whether the left string is < the right string
case insensitive
| Name | UEOpLessThan |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
UE_FORCEINLINE_HINT bool UEOpLessThan
(
const FString & Rhs
) const
true if the left string is lexicographically < the right string, otherwise false
Parameters
| Name | Remarks |
|---|---|
| Lhs | String to compare against. |
| Rhs | String to compare against. |
UEOpLessThan(const CharType *)
Description
Lexicographically test whether the left string is < the right string
case insensitive
| Name | UEOpLessThan |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/UnrealString.h.inl |
| Include Path | #include "Containers/UnrealString.h.inl" |
template<typename CharType>
UE_FORCEINLINE_HINT bool UEOpLessThan
(
const CharType * Rhs
) const
true if the left string is lexicographically < the right string, otherwise false
Parameters
| Name | Remarks |
|---|---|
| Lhs | String to compare against. |
| Rhs | String to compare against. |