std::mdspan<T,Extents,LayoutPolicy,AccessorPolicy>:: operator=
From cppreference.net
C++
Containers library
|
(C++17)
|
||||
| Sequence | ||||
|
(C++11)
|
||||
|
(C++26)
|
||||
|
(C++26)
|
||||
|
(C++11)
|
||||
| Associative | ||||
| Unordered associative | ||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
|
(C++11)
|
||||
| Adaptors | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
| Views | ||||
|
(C++20)
|
||||
|
(C++23)
|
||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
std::mdspan
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
헤더에 정의됨
<mdspan>
|
||
|
constexpr
mdspan
&
operator
=
(
const
mdspan
&
rhs
)
=
default
;
|
(1) | (C++23부터) |
|
constexpr
mdspan
&
operator
=
(
mdspan
&&
rhs
)
=
default
;
|
(2) | (C++23부터) |
rhs 를 * this 에 할당합니다
1)
디폴트 복사 할당 연산자
,
2)
디폴트 이동 대입 연산자
.
목차 |
매개변수
| other | - | 복사하거나 이동할 다른 mdspan |
반환값
* this
예제
|
이 섹션은 불완전합니다
이유: 예제 없음 |
참고 항목
| 이 섹션은 불완전합니다 |