How to find an element in c++23 std::mdspan? Let's say there is some 2D mdspan. How can I find an element and get it's 2D indices?
I guess I can call data_handle() to get an access to underlaying data and do a 1D array search, but this will give me a 1D index. Does mdspan provide a method to map it back to 2D index?
Use
std::ranges::find
with a custom projection.The above outputs
1,1
.Demo: https://godbolt.org/z/obW9jE3eW