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
11 changes: 6 additions & 5 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -22203,7 +22203,7 @@
-> @\seebelow@;

template<class... SliceSpecifiers>
friend constexpr auto submdspan_mapping(
friend constexpr auto @\libmember{submdspan_mapping}{layout_left::mapping}@(
const mapping& src, SliceSpecifiers... slices) {
return src.@\exposid{submdspan-mapping-impl}@(slices...);
}
Expand Down Expand Up @@ -22532,7 +22532,7 @@
-> @\seebelow@;

template<class... SliceSpecifiers>
friend constexpr auto submdspan_mapping(
friend constexpr auto @\libmember{submdspan_mapping}{layout_right::mapping}@(
const mapping& src, SliceSpecifiers... slices) {
return src.@\exposid{submdspan-mapping-impl}@(slices...);
}
Expand Down Expand Up @@ -22863,7 +22863,7 @@
-> @\seebelow@;

template<class... SliceSpecifiers>
friend constexpr auto submdspan_mapping(
friend constexpr auto @\libmember{submdspan_mapping}{layout_stride::mapping}@(
const mapping& src, SliceSpecifiers... slices) {
return src.@\exposid{submdspan-mapping-impl}@(slices...);
}
Expand Down Expand Up @@ -23278,7 +23278,7 @@
-> @\seebelow@;

template<class... SliceSpecifiers>
friend constexpr auto submdspan_mapping(const mapping& src, SliceSpecifiers... slices) {
friend constexpr auto @\libmember{submdspan_mapping}{layout_left_padded::mapping}@(const mapping& src, SliceSpecifiers... slices) {
return src.@\exposid{submdspan-mapping-impl}@(slices...);
}
};
Expand Down Expand Up @@ -23913,7 +23913,7 @@
-> @\seebelow@;

template<class... SliceSpecifiers>
friend constexpr auto submdspan_mapping(const mapping& src, SliceSpecifiers... slices) {
friend constexpr auto @\libmember{submdspan_mapping}{layout_right_padded::mapping}@(const mapping& src, SliceSpecifiers... slices) {
return src.@\exposid{submdspan-mapping-impl}@(slices...);
}
};
Expand Down Expand Up @@ -26013,6 +26013,7 @@
\end{itemize}

\pnum
\indexlibraryglobal{submdspan_mapping}%
Copy link
Contributor Author

@frederick-vs-ja frederick-vs-ja Mar 18, 2026

Choose a reason for hiding this comment

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

This paragraph is perhaps the right place for "primary" submdspan_mapping, but it's somehow duplicate of [contents]/3 which also lists submdspan_mapping.

For the purpose of this section,
the meaning of \tcode{submdspan_mapping} is established
as if by performing argument-dependent lookup only\iref{basic.lookup.argdep}.
Expand Down
Loading