std::mdspan<T,Extents,LayoutPolicy,AccessorPolicy>::operator=
Min standard notice:
Header: <mdspan>
Assigns rhs to *this with
# Declarations
constexpr mdspan& operator=( const mdspan& rhs ) = default;
(since C++23)
constexpr mdspan& operator=( mdspan&& rhs ) = default;
(since C++23)
# Parameters
other: another mdspan to copy or move from
# Return value
*this
# Example
This section is incompleteReason: no example