Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.cmp/
H A Dsfinae.compile.pass.cpp128 struct NoLessCompIter : IterBase { struct
129 bool operator==(NoLessCompIter) const;
130 bool operator!=(NoLessCompIter) const;
131 bool operator>(NoLessCompIter) const;
132 bool operator<=(NoLessCompIter) const;
133 bool operator>=(NoLessCompIter) const;
137 static_assert(!HasGreater<std::reverse_iterator<NoLessCompIter>>);
138 static_assert( HasEqual<std::reverse_iterator<NoLessCompIter>>);
139 static_assert( HasNotEqual<std::reverse_iterator<NoLessCompIter>>);
140 static_assert( HasLess<std::reverse_iterator<NoLessCompIter>>);
[all …]