Skip to content

Commit

Permalink
[range.cache.latest] Add \libconcept for sized_range and sized_sentin…
Browse files Browse the repository at this point in the history
…el_for
  • Loading branch information
hewillk authored Dec 23, 2024
1 parent 4c0a2fb commit 366b7ef
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 @@ -16834,8 +16834,8 @@

\indexlibrarymember{size}{cache_latest_view}%
\begin{itemdecl}
constexpr auto size() requires sized_range<V>;
constexpr auto size() const requires sized_range<const V>;
constexpr auto size() requires @\libconcept{sized_range}@<V>;
constexpr auto size() const requires @\libconcept{sized_range}@<const V>;
\end{itemdecl}

\begin{itemdescr}
Expand Down Expand Up @@ -17017,9 +17017,9 @@
friend constexpr bool operator==(const @\exposid{iterator}@& x, const @\exposid{sentinel}@& y);

friend constexpr range_difference_t<V> operator-(const @\exposid{iterator}@& x, const @\exposid{sentinel}@& y)
requires sized_sentinel_for<sentinel_t<V>, iterator_t<V>>;
requires @\libconcept{sized_sentinel_for}@<sentinel_t<V>, iterator_t<V>>;
friend constexpr range_difference_t<V> operator-(const @\exposid{sentinel}@& x, const @\exposid{iterator}@& y)
requires sized_sentinel_for<sentinel_t<V>, iterator_t<V>>;
requires @\libconcept{sized_sentinel_for}@<sentinel_t<V>, iterator_t<V>>;
};
}
\end{codeblock}
Expand Down Expand Up @@ -17062,7 +17062,7 @@
\indexlibrarymember{operator-}{cache_latest_view::\exposid{sentinel}}%
\begin{itemdecl}
friend constexpr range_difference_t<V> operator-(const @\exposid{iterator}@& x, const @\exposid{sentinel}@& y)
requires sized_sentinel_for<sentinel_t<V>, iterator_t<V>>;
requires @\libconcept{sized_sentinel_for}@<sentinel_t<V>, iterator_t<V>>;
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -17075,7 +17075,7 @@
\indexlibrarymember{operator-}{cache_latest_view::\exposid{sentinel}}%
\begin{itemdecl}
friend constexpr range_difference_t<V> operator-(const @\exposid{sentinel}@& x, const @\exposid{iterator}@& y)
requires sized_sentinel_for<sentinel_t<V>, iterator_t<V>>;
requires @\libconcept{sized_sentinel_for}@<sentinel_t<V>, iterator_t<V>>;
\end{itemdecl}

\begin{itemdescr}
Expand Down

0 comments on commit 366b7ef

Please sign in to comment.