Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: lprv <100177227+lprv@users.noreply.github.com>
  • Loading branch information
jensmaurer and lprv authored Feb 20, 2025
1 parent 30c8f33 commit 40ec15d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions source/ranges.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17119,7 +17119,7 @@
\tcode{views::all(E)}
if \tcode{T} models \libconcept{input_range},
does not satisfy \libconcept{common_range}, and
does not satisfy \libconcept{forward_range};
does not satisfy \libconcept{forward_range}.
\item
Otherwise, \tcode{to_input_view(E)}.
\end{itemize}
Expand Down Expand Up @@ -17162,7 +17162,7 @@
\begin{itemdescr}
\pnum
\effects
Initializes \exposid{base_} with std::move(base).
Initializes \exposid{base_} with \tcode{std::move(base)}.
\end{itemdescr}

\begin{itemdecl}
Expand Down Expand Up @@ -17271,7 +17271,7 @@

\begin{itemdecl}
constexpr @\exposid{iterator}@(@\exposid{iterator}@<!Const> i)
requires Const && @\libconcept{convertible_to}@<iterator_t<V>, iterator_t<Base>>;
requires Const && @\libconcept{convertible_to}@<iterator_t<V>, iterator_t<@\exposid{Base}@>>;
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -17281,7 +17281,7 @@
\end{itemdescr}

\begin{itemdecl}
constexpr iterator_t<Base> base() &&;
constexpr iterator_t<@\exposid{Base}@> base() &&;
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -17291,7 +17291,7 @@
\end{itemdescr}

\begin{itemdecl}
constexpr const iterator_t<Base>& base() const & noexcept;
constexpr const iterator_t<@\exposid{Base}@>& base() const & noexcept;
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -17301,7 +17301,7 @@
\end{itemdescr}

\begin{itemdecl}
constexpr iterator& operator++();
constexpr @\exposid{iterator}@& operator++();
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -17325,7 +17325,7 @@
\end{itemdescr}

\begin{itemdecl}
friend constexpr bool operator==(const @\exposid{iterator}@& x, const sentinel_t<Base>& y);
friend constexpr bool operator==(const @\exposid{iterator}@& x, const sentinel_t<@\exposid{Base}@>& y);
\end{itemdecl}

\begin{itemdescr}
Expand Down

0 comments on commit 40ec15d

Please sign in to comment.