Is there a reason to use [begin, end[ when taking a submdspan with pairs ? It is a different convention from subspan in std::span that uses the pair (offset, count).
I also noticed that it is a free function whereas in std::span it is a member function.
Is there a reason to use
[begin, end[
when taking asubmdspan
with pairs ? It is a different convention fromsubspan
instd::span
that uses the pair(offset, count)
.I also noticed that it is a free function whereas in
std::span
it is a member function.Thomas P.