std::extents, std::dextents, std::dims
Min standard notice:
Header: <mdspan>
- Represents a multidimensional index space of rank equal to sizeof…(Extents).
# Declarations
template< class IndexType, std::size_t... Extents >
class extents;
(since C++23)
template< class IndexType, std::size_t Rank >
using dextents = /* see below */
(since C++23)
template< std::size_t Rank, class IndexType = std::size_t >
using dims = std::dextents<IndexType, Rank>;
(since C++26)
# Example
This section is incompleteReason: no example