swap(std::mdspan)
Min standard notice:
Overloads the std::swap algorithm for std::mdspan. Exchanges the state of x with that of y. Equivalent to:
# Declarations
friend constexpr void swap( mdspan& x, mdspan& y ) noexcept;
(since C++23)
# Parameters
x, y: mdspan objects whose states to swap
# Return value
(none)
# Example
This section is incompleteReason: no example