mdspan is an upcoming feature in C++23 with two main changes:
operator[] for multi-dimensional arrays
- Indexing and types for multi-dimensional arrays
While 1 requires a new C++ compiler, 2 has been included the CCCL recently. For this feature we can add partial support for the second part by taking in mdspan types into make_tensor calls to translate to what we have.
mdspanis an upcoming feature in C++23 with two main changes:operator[]for multi-dimensional arraysWhile 1 requires a new C++ compiler, 2 has been included the CCCL recently. For this feature we can add partial support for the second part by taking in
mdspantypes intomake_tensorcalls to translate to what we have.