tmp/tmpp2r0s0dm/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
##### Alias template `dims` <a id="mdspan.extents.dims">[[mdspan.extents.dims]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
template<size_t Rank, class IndexType = size_t>
|
| 5 |
+
using dims = see below;
|
| 6 |
+
```
|
| 7 |
+
|
| 8 |
+
*Result:* A type `E` that is a specialization of `extents` such that
|
| 9 |
+
`E::rank() == Rank && E::rank() == E::rank_dynamic()` is `true`, and
|
| 10 |
+
`E::index_type` denotes `IndexType`.
|
| 11 |
+
|