Home
last modified time | relevance | path

Searched refs:copying_iterator (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.join.view/
H A Dtypes.h301 struct copying_iterator { struct
309 constexpr copying_iterator(It it) : it_(std::move(it)) {} in copying_iterator() function
314 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 …]
/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.join.view/iterator/
H A Diter.swap.pass.cpp19 using NonSwappableView = BufferView<copying_iterator<int*>>;