Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TArrayView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool UEOpEquals
(
FIntrusiveUnsetOptionalState |
Containers/ArrayView.h | ||
bool UEOpEquals
(
TArrayView< OtherElementType, OtherSizeType > |
Comparison of array views to each other is not implemented because it is not obvious whether the caller wants an exact match of the data pointer and size, or to compare the objects being pointed to. | Containers/ArrayView.h | |
bool UEOpEquals
(
RangeType&& Rhs |
Equality operator. | Containers/ArrayView.h |
UEOpEquals(FIntrusiveUnsetOptionalState)
| Name | UEOpEquals |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
bool UEOpEquals
(
FIntrusiveUnsetOptionalState
) const
UEOpEquals(TArrayView< OtherElementType, OtherSizeType >)
Description
Comparison of array views to each other is not implemented because it is not obvious whether the caller wants an exact match of the data pointer and size, or to compare the objects being pointed to.
| Name | UEOpEquals |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
template<typename OtherElementType, typename OtherSizeType>
bool UEOpEquals
(
TArrayView < OtherElementType, OtherSizeType >
) const
UEOpEquals(RangeType &&)
Description
Equality operator.
| Name | UEOpEquals |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
template<typename RangeType>
bool UEOpEquals
(
RangeType && Rhs
) const
True if this array view's contents and the other ranged type match. False otherwise.
Parameters
| Name | Remarks |
|---|---|
| Lhs | Another ranged type to compare. |