Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -21297,7 +21297,7 @@
class AccessorPolicy, class... SliceSpecifiers>
constexpr auto submdspan(
const mdspan<ElementType, Extents, LayoutPolicy, AccessorPolicy>& src,
SliceSpecifiers... slices) -> @\seebelow@;
SliceSpecifiers... raw_slices) -> @\seebelow@;

template<class T, class IndexType>
concept @\defexposconcept{index-pair-like}@ = // \expos
Expand Down Expand Up @@ -26579,7 +26579,7 @@
class AccessorPolicy, class... SliceSpecifiers>
constexpr auto submdspan(
const mdspan<ElementType, Extents, LayoutPolicy, AccessorPolicy>& src,
SliceSpecifiers... slices) -> @\seebelow@;
SliceSpecifiers... raw_slices) -> @\seebelow@;
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -26589,7 +26589,7 @@
\pnum
Let \tcode{slices} be the pack introduced by the following declaration:
\begin{codeblock}
auto [...slices] = canonical_slices(src, raw_slices...);
auto [...slices] = canonical_slices(src.extents(), raw_slices...);
\end{codeblock}

\pnum
Expand Down
Loading