Searched refs:copying_iterator (Results 1 – 2 of 2) sorted by relevance
301 struct copying_iterator { struct309 constexpr copying_iterator(It it) : it_(std::move(it)) {} in copying_iterator() function314 constexpr copying_iterator& operator++() {318 constexpr copying_iterator& operator--()323 constexpr copying_iterator operator++(int)325 return copying_iterator(it_++);328 constexpr copying_iterator operator--(int)330 return copying_iterator(it_--);333 friend constexpr bool operator==(const copying_iterator& x, const copying_iterator& y) = default;339 using iterator = copying_iterator<std::ranges::iterator_t<Outer>>;[all …]
19 using NonSwappableView = BufferView<copying_iterator<int*>>;