Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/algorithms/
H A Drobust_against_proxy_iterators_lifetime_bugs.pass.cpp358 class ConstexprIterator { class
429 constexpr ConstexprIterator(const ConstexprIterator& rhs) : ptr_(rhs.ptr_) { in ConstexprIterator() function in ConstexprIterator
433 constexpr ConstexprIterator& operator=(const ConstexprIterator& rhs) { in operator =()
442 constexpr ConstexprIterator(ConstexprIterator&& rhs) noexcept : ptr_(rhs.ptr_) { in ConstexprIterator() function in ConstexprIterator
448 constexpr ConstexprIterator& operator=(ConstexprIterator&& rhs) noexcept { in operator =()
479 friend constexpr bool operator==(const ConstexprIterator& lhs, const ConstexprIterator& rhs) { in operator ==()
484 friend constexpr bool operator!=(const ConstexprIterator& lhs, const ConstexprIterator& rhs) { in operator !=()
522 friend constexpr auto operator<=>(const ConstexprIterator& lhs, const ConstexprIterator& rhs) { in operator <=>()
527 friend constexpr ConstexprIterator operator+(const ConstexprIterator& lhs, difference_type n) { in operator +()
532 friend constexpr ConstexprIterator operator+(difference_type n, const ConstexprIterator& lhs) { in operator +()
[all …]