Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TArrayView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArrayView & operator=
(
const TArrayView& |
Containers/ArrayView.h | ||
TArrayView & operator=
(
OtherRangeType&& Other |
Start - assignment operators //. | Containers/ArrayView.h | |
TArrayView & operator=
(
OtherRangeType&& Other |
Containers/ArrayView.h | ||
TArrayView & operator=
(
std::initializer_list< ElementType > List |
Assign from an initializer list. | Containers/ArrayView.h |
operator=(const TArrayView &)
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
TArrayView & operator=
(
const TArrayView &
)
operator=(OtherRangeType &&)
Description
We need to explicitly implement assignment operators, even though they're equivalent to copying an implicitly- constructed temporary, because UE_LIFETIMEBOUND isn't transitive across implicit construction. Assign from another range
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
template<typename OtherRangeType, typename CVUnqualifiedOtherRangeType, std::enable_if_t<< TIsContiguousContainer < CVUnqualifiedOtherRangeType >, TOr < TIsCompatibleRangeType < OtherRangeType >, TIsReinterpretableRangeType < OtherRangeType > > >::Value &&TIsTArrayView_V< CVUnqualifiedOtherRangeType > &&!std::is_same_v< CVUnqualifiedOtherRangeType, TArrayView >), int >>
TArrayView & operator=
(
OtherRangeType && Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The source range to copy |
operator=(OtherRangeType &&)
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
template<typename OtherRangeType, typename CVUnqualifiedOtherRangeType, std::enable_if_t<< TIsContiguousContainer < CVUnqualifiedOtherRangeType >, TOr < TIsCompatibleRangeType < OtherRangeType >, TIsReinterpretableRangeType < OtherRangeType > > >::Value &&!TIsTArrayView_V< CVUnqualifiedOtherRangeType >), int >>
TArrayView & operator=
(
OtherRangeType && Other
)
operator=(std::initializer_list< ElementType >)
Description
Assign from an initializer list.
The caller is responsible for ensuring that the view does not outlive the initializer list.
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ArrayView.h |
| Include Path | #include "Containers/ArrayView.h" |
TArrayView & operator=
(
std::initializer_list< ElementType > List
)