File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 21080
21080
struct full_extent_t { explicit full_extent_t() = default; };
21081
21081
inline constexpr full_extent_t full_extent{};
21082
21082
21083
- template<class IndexType, class ... Extents, class... SliceSpecifiers>
21083
+ template<class IndexType, size_t ... Extents, class... SliceSpecifiers>
21084
21084
constexpr auto submdspan_extents(const extents<IndexType, Extents...>&, SliceSpecifiers...);
21085
21085
21086
21086
// \ref{mdspan.sub.sub}, \tcode{submdspan} function template
@@ -25500,15 +25500,15 @@
25500
25500
25501
25501
\indexlibraryglobal{submdspan_extents}%
25502
25502
\begin{itemdecl}
25503
- template<class IndexType, class ... Extents, class... SliceSpecifiers>
25503
+ template<class IndexType, size_t ... Extents, class... SliceSpecifiers>
25504
25504
constexpr auto submdspan_extents(const extents<IndexType, Extents...>& src,
25505
25505
SliceSpecifiers... slices);
25506
25506
\end{itemdecl}
25507
25507
25508
25508
\begin{itemdescr}
25509
25509
\pnum
25510
25510
\constraints
25511
- \tcode{sizeof...(slices)} equals \tcode{Extents::rank( )}.
25511
+ \tcode{sizeof...(slices)} equals \tcode{sizeof...(Extents )}.
25512
25512
25513
25513
\pnum
25514
25514
\mandates
You can’t perform that action at this time.
0 commit comments