Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TStringView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Equals
(
TStringView< OtherCharType > OtherView, |
Check whether this view is equivalent to another view. | Containers/StringView.h | |
bool Equals
(
const OtherRangeType& Other, |
Check whether this view is equivalent to a character range. | Containers/StringView.h | |
bool Equals
(
const OtherCharType* Other, |
Check whether this view is equivalent to a string view. | Containers/StringView.h |
Equals(TStringView< OtherCharType >, ESearchCase::Type)
Description
Check whether this view is equivalent to another view.
| Name | Equals |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StringView.h |
| Include Path | #include "Containers/StringView.h" |
template<UE::CCharType OtherCharType>
bool Equals
(
TStringView < OtherCharType > OtherView,
ESearchCase::Type SearchCase
) const
0 is equal, negative if this view is less, positive if this view is greater.
Parameters
| Name | Remarks |
|---|---|
| OtherView | A string view that is comparable with the character type of this view. |
| SearchCase | Whether the comparison should ignore case. |
Equals(const OtherRangeType &, ESearchCase::Type)
Description
Check whether this view is equivalent to a character range.
| Name | Equals |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StringView.h |
| Include Path | #include "Containers/StringView.h" |
template<UE::CStringViewable OtherRangeType>
bool Equals
(
const OtherRangeType & Other,
ESearchCase::Type SearchCase
) const
Parameters
| Name | Remarks |
|---|---|
| Other | A character range that is comparable with the character type of this view. |
| SearchCase | Whether the comparison should ignore case. |
Equals(const OtherCharType *, ESearchCase::Type)
Description
Check whether this view is equivalent to a string view.
| Name | Equals |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StringView.h |
| Include Path | #include "Containers/StringView.h" |
template<UE::CCharType OtherCharType>
bool Equals
(
const OtherCharType * Other,
ESearchCase::Type SearchCase
) const
Parameters
| Name | Remarks |
|---|---|
| Other | A string that is comparable with the character type of this view. |
| SearchCase | Whether the comparison should ignore case. |