In issue #642, the codebase has been upgraded to C++23:
set(CMAKE_CXX_STANDARD 23)
It is time to make std::mdspan available to SimpleArray. With std::mdspan, implementing SimpleArray construction with the selection of row-majoring (std::layout_right) or column-majoring (std::layout_left) will be straight-forward.
In issue #642, the codebase has been upgraded to C++23:
It is time to make
std::mdspanavailable toSimpleArray. Withstd::mdspan, implementingSimpleArrayconstruction with the selection of row-majoring (std::layout_right) or column-majoring (std::layout_left) will be straight-forward.