File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1676916769namespace std::ranges {
1677016770 template<@\libconcept{input_range}@ V>
1677116771 requires @\libconcept{view}@<V>
16772- class cache_latest_view : public view_interface<cache_latest_view<V>> {
16772+ class @\libglobal{ cache_latest_view}@ : public view_interface<cache_latest_view<V>> {
1677316773 V @\exposid{base_}@ = V(); // \expos
1677416774 using @\exposid{cache_t}@ = conditional_t<is_reference_v<range_reference_t<V>>, // \expos
1677516775 add_pointer_t<range_reference_t<V>>,
1679916799}
1680016800\end{codeblock}
1680116801
16802+ \indexlibraryctor{cache_latest_view}%
1680216803\begin{itemdecl}
1680316804constexpr explicit cache_latest_view(V base);
1680416805\end{itemdecl}
1680916810Initializes \exposid{base_} with \tcode{std::move(base)}.
1681016811\end{itemdescr}
1681116812
16813+ \indexlibrarymember{begin}{cache_latest_view}%
1681216814\begin{itemdecl}
1681316815constexpr auto begin();
1681416816\end{itemdecl}
1681916821Equivalent to: \tcode{return \exposid{iterator}(*this);}
1682016822\end{itemdescr}
1682116823
16824+ \indexlibrarymember{end}{cache_latest_view}%
1682216825\begin{itemdecl}
1682316826constexpr auto end();
1682416827\end{itemdecl}
You can’t perform that action at this time.
0 commit comments