Searched defs:CountedView (Results 1 – 3 of 3) sorted by relevance
50 struct CountedView : std::ranges::view_base { struct54 CountedView(int* b, int* e) : begin_(b), end_(e) { } in CountedView() argument56 auto begin() { return CountedIter(begin_); } in begin()57 auto begin() const { return CountedIter(begin_); } in begin()58 auto end() { return sentinel_wrapper<CountedIter>(CountedIter(end_)); } in end()59 auto end() const { return sentinel_wrapper<CountedIter>(CountedIter(end_)); } in end()
124 struct CountedView : std::ranges::view_base { struct 125 explicit constexpr CountedView(IteratorOpCounts* opcounts) noexcept : opcounts_(opcounts) {} in begin() argument 126 endCountedView end() argument
123 struct CountedView : std::ranges::view_base { global() struct 124 beginCountedView begin() argument 125 endCountedView end() argument