Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TStringView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Equals
(
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(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<typename OtherRangeType, decltype< OtherRangeType >)) *>
bool Equals
(
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<typename OtherCharType, std::enable_if_t<(TIsCharType_V< OtherCharType >), int >>
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. |