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 @@ -21080,7 +21080,7 @@
struct full_extent_t { explicit full_extent_t() = default; };
inline constexpr full_extent_t full_extent{};

template<class IndexType, class... Extents, class... SliceSpecifiers>
template<class IndexType, size_t... Extents, class... SliceSpecifiers>
constexpr auto submdspan_extents(const extents<IndexType, Extents...>&, SliceSpecifiers...);

// \ref{mdspan.sub.sub}, \tcode{submdspan} function template
Expand Down Expand Up @@ -25500,15 +25500,15 @@

\indexlibraryglobal{submdspan_extents}%
\begin{itemdecl}
template<class IndexType, class... Extents, class... SliceSpecifiers>
template<class IndexType, size_t... Extents, class... SliceSpecifiers>
constexpr auto submdspan_extents(const extents<IndexType, Extents...>& src,
SliceSpecifiers... slices);
\end{itemdecl}

\begin{itemdescr}
\pnum
\constraints
\tcode{sizeof...(slices)} equals \tcode{Extents::rank()}.
\tcode{sizeof...(slices)} equals \tcode{sizeof...(Extents)}.

\pnum
\mandates
Expand Down