kokkos / mdspan

Reference implementation of mdspan targeting C++23
Other
413 stars 69 forks source link

Implement P2389R1 (add dims template alias) #324

Closed mhoemmen closed 6 months ago

mhoemmen commented 7 months ago

Implement P2389R1, which will be submitted by 2024/04/12. The proposal adds a dims template alias that looks like this.

template<size_t Rank, class IndexType = size_t>
using dims = dextents<IndexType, Rank>;