Motivating example: ```cpp std::mdspan src{src_ptr, src_exts}; std::mdspan dst{dst_ptr, dst_exts}; std::fill(src, 5.0); std::copy(src, dst); ```
Motivating example:
std::mdspan src{src_ptr, src_exts}; std::mdspan dst{dst_ptr, dst_exts}; std::fill(src, 5.0); std::copy(src, dst);