Skip to content
Merged
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@;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should have been changed by the paper, to match the change to [mdspan.sub.sub] in the paper.


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@;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

\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...);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a bug in the paper.

\end{codeblock}

\pnum
Expand Down
Loading