Daily bit(e) of C++ | std::mdspan
Daily bit(e) of C++ #436, The C++23 multi-dimensional view over a contiguous sequence of elements: std::mdspan.
The C++23 std::mdspan is a view over a contiguous sequence of elements, providing the interface of a multidimensional array over these elements.
The array dimensions can be specified both statically and dynamically. Additionally, std::mdspan supports data layouts, including the option to define custom layouts.