swap(std::mdspan)
From cppreference.com
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
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| friend constexpr void swap( mdspan& x, mdspan& y ) noexcept; |
(since C++23) | |
Overloads the std::swap algorithm for std::mdspan. Exchanges the state of x with that of y. Equivalent to:
std::swap(x.acc_, y.acc_);
std::swap(x.map_, y.map_);
std::swap(x.ptr_, y.ptr_);
This function is not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::mdspan is an associated class of the arguments.
Contents |
[edit] Parameters
| x, y | - | mdspan objects whose states to swap
|
[edit] Return value
(none)
[edit] Example
| This section is incomplete Reason: no example |
[edit] See also
| This section is incomplete |