Searched defs:CommonRange (Results 1 – 3 of 3) sorted by relevance
32 struct CommonRange : std::ranges::view_base { struct34 constexpr explicit CommonRange(int* b, int* e) : begin_(b), end_(e) { } in CommonRange() argument35 constexpr Iterator begin() const { return Iterator(begin_); } in begin()36 constexpr Iterator end() const { return Iterator(end_); } in end()39 int* begin_;40 int* end_;
38 struct CommonRange : std::ranges::view_base { struct40 constexpr explicit CommonRange(int* b, int* e) : begin_(b), end_(e) {} in CommonRange() argument49 static_assert(std::ranges::bidirectional_range<CommonRange>); argument
75 struct CommonRange { struct 84 static_assert(std::ranges::input_range<CommonRange>); argument