Skip to content

Commit

Permalink
LWG3555 {transform,elements}_view::iterator::iterator_concept should …
Browse files Browse the repository at this point in the history
…consider const-qualification of the underlying range
  • Loading branch information
jensmaurer committed Jun 14, 2021
1 parent 86946b4 commit c62b973
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/ranges.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3915,13 +3915,13 @@
\pnum
\tcode{iterator::iterator_concept} is defined as follows:
\begin{itemize}
\item If \tcode{V} models \libconcept{random_access_range}, then
\item If \exposid{Base} models \libconcept{random_access_range}, then
\tcode{iterator_concept} denotes \tcode{random_access_iterator_tag}.

\item Otherwise, if \tcode{V} models \libconcept{bidirectional_range}, then
\item Otherwise, if \exposid{Base} models \libconcept{bidirectional_range}, then
\tcode{iterator_concept} denotes \tcode{bidirectional_iterator_tag}.

\item Otherwise, if \tcode{V} models \libconcept{forward_range}, then
\item Otherwise, if \exposid{Base} models \libconcept{forward_range}, then
\tcode{iterator_concept} denotes \tcode{forward_iterator_tag}.

\item Otherwise, \tcode{iterator_concept} denotes \tcode{input_iterator_tag}.
Expand Down Expand Up @@ -6535,13 +6535,13 @@
is defined as follows:
\begin{itemize}
\item
If \tcode{V} models \libconcept{random_access_range},
If \exposid{Base} models \libconcept{random_access_range},
then \tcode{iterator_concept} denotes \tcode{random_access_iterator_tag}.
\item
Otherwise, if \tcode{V} models \libconcept{bidirectional_range},
Otherwise, if \exposid{Base} models \libconcept{bidirectional_range},
then \tcode{iterator_concept} denotes \tcode{bidirectional_iterator_tag}.
\item
Otherwise, if \tcode{V} models \libconcept{forward_range},
Otherwise, if \exposid{Base} models \libconcept{forward_range},
then \tcode{iterator_concept} denotes \tcode{forward_iterator_tag}.
\item
Otherwise, \tcode{iterator_concept} denotes \tcode{input_iterator_tag}.
Expand Down

0 comments on commit c62b973

Please sign in to comment.