Skip to content

Commit d9f8705

Browse files
hewillktkoeppe
authored andcommitted
[range.take.overview, range.drop.overview] Remove redundant ranges:: qualifier
1 parent 6b5f99f commit d9f8705

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

source/ranges.tex

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5676,7 +5676,7 @@
56765676
\begin{itemize}
56775677
\item
56785678
If \tcode{T} is a specialization
5679-
of \tcode{ranges::empty_view}\iref{range.empty.view},
5679+
of \tcode{empty_view}\iref{range.empty.view},
56805680
then \tcode{((void)F, \placeholdernc{decay-copy}(E))},
56815681
except that the evaluations of \tcode{E} and \tcode{F}
56825682
are indeterminately sequenced.
@@ -5687,7 +5687,7 @@
56875687
and is a specialization of
56885688
\tcode{span}\iref{views.span},
56895689
\tcode{basic_string_view}\iref{string.view}, or
5690-
\tcode{ranges::subrange}\iref{range.subrange},
5690+
\tcode{subrange}\iref{range.subrange},
56915691
then
56925692
\tcode{U(ranges::begin(E),
56935693
ranges::be\-gin(E) + std::min<D>(ranges::distance(E), F))},
@@ -5699,22 +5699,22 @@
56995699
then \tcode{U} is \tcode{span<typename T::element_type>};
57005700
\item otherwise, if \tcode{T} is a specialization of \tcode{basic_string_view},
57015701
then \tcode{U} is \tcode{T};
5702-
\item otherwise, \tcode{T} is a specialization of \tcode{ranges::subrange}, and
5703-
\tcode{U} is \tcode{ranges::subrange<iterator_t<T>>};
5702+
\item otherwise, \tcode{T} is a specialization of \tcode{subrange}, and
5703+
\tcode{U} is \tcode{subrange<iterator_t<T>>};
57045704
\end{itemize}
57055705

57065706
\item
57075707
otherwise, if \tcode{T} is
5708-
a specialization of \tcode{ranges::iota_view}\iref{range.iota.view}
5708+
a specialization of \tcode{iota_view}\iref{range.iota.view}
57095709
that models \libconcept{random_access_range} and \libconcept{sized_range},
57105710
then
5711-
\tcode{ranges::iota_view(*ranges::begin(E),
5711+
\tcode{iota_view(*ranges::begin(E),
57125712
*(ranges::begin(E) + std::\linebreak{}min<D>(ranges::distance(E), F)))},
57135713
except that \tcode{E} is evaluated only once.
57145714

57155715
\item
57165716
Otherwise, if \tcode{T} is
5717-
a specialization of \tcode{ranges::repeat_view}\iref{range.repeat.view}:
5717+
a specialization of \tcode{repeat_view}\iref{range.repeat.view}:
57185718
\begin{itemize}
57195719
\item
57205720
if \tcode{T} models \libconcept{sized_range},
@@ -5728,7 +5728,7 @@
57285728
\end{itemize}
57295729

57305730
\item
5731-
Otherwise, \tcode{ranges::take_view(E, F)}.
5731+
Otherwise, \tcode{take_view(E, F)}.
57325732
\end{itemize}
57335733

57345734
\pnum
@@ -6141,7 +6141,7 @@
61416141
\begin{itemize}
61426142
\item
61436143
If \tcode{T} is a specialization of
6144-
\tcode{ranges::empty_view}\iref{range.empty.view},
6144+
\tcode{empty_view}\iref{range.empty.view},
61456145
then \tcode{((void)F, \placeholdernc{decay-copy}(E))},
61466146
except that the evaluations of \tcode{E} and \tcode{F}
61476147
are indeterminately sequenced.
@@ -6153,8 +6153,8 @@
61536153
\begin{itemize}
61546154
\item a specialization of \tcode{span}\iref{views.span},
61556155
\item a specialization of \tcode{basic_string_view}\iref{string.view},
6156-
\item a specialization of \tcode{ranges::iota_view}\iref{range.iota.view}, or
6157-
\item a specialization of \tcode{ranges::subrange}\iref{range.subrange}
6156+
\item a specialization of \tcode{iota_view}\iref{range.iota.view}, or
6157+
\item a specialization of \tcode{subrange}\iref{range.subrange}
61586158
where \tcode{T::\exposid{StoreSize}} is \tcode{false},
61596159
\end{itemize}
61606160
then \tcode{U(ranges::begin(E) + std::min<D>(ranges::distance(E), F), ranges::end(E))},
@@ -6165,7 +6165,7 @@
61656165
\item
61666166
Otherwise,
61676167
if \tcode{T} is
6168-
a specialization of \tcode{ranges::subrange}\iref{range.subrange}
6168+
a specialization of \tcode{subrange}\iref{range.subrange}
61696169
that models \libconcept{random_access_range} and \libconcept{sized_range},
61706170
then
61716171
\tcode{T(ranges::begin(E) + std::min<D>(ranges::distance(E), F), ranges::\linebreak{}end(E),
@@ -6175,7 +6175,7 @@
61756175

61766176
\item
61776177
Otherwise, if \tcode{T} is
6178-
a specialization of \tcode{ranges::repeat_view}\iref{range.repeat.view}:
6178+
a specialization of \tcode{repeat_view}\iref{range.repeat.view}:
61796179
\begin{itemize}
61806180
\item
61816181
if \tcode{T} models \libconcept{sized_range},
@@ -6190,7 +6190,7 @@
61906190
\end{itemize}
61916191

61926192
\item
6193-
Otherwise, \tcode{ranges::drop_view(E, F)}.
6193+
Otherwise, \tcode{drop_view(E, F)}.
61946194
\end{itemize}
61956195

61966196
\pnum

0 commit comments

Comments
 (0)