Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/support/
H A Dboolean_testable.h44 class StrictComparable {
47 constexpr StrictComparable(T value) : value_{value} {} in StrictComparable() function
49 …friend constexpr BooleanTestable operator==(const StrictComparable& lhs, const StrictComparable& r…
53 …friend constexpr BooleanTestable operator!=(const StrictComparable& lhs, const StrictComparable& r…
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.replace/
H A Dranges.replace.pass.cpp144 StrictComparable<int> a[] = {1, 2, 2, 4}; in test()
149 StrictComparable<int> a[] = {1, 2, 2, 4}; in test()
157 StrictComparable<int> a[] = {1, 2, 2, 4}; in test()
162 StrictComparable<int> a[] = {1, 2, 2, 4}; in test()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/
H A Dranges.remove.pass.cpp188 StrictComparable<int> a[] = {1, 2, 3, 4}; in test()
189 auto ret = std::ranges::remove(a, a + 4, StrictComparable<int>{2}); in test()
193 StrictComparable<int> a[] = {1, 2, 3, 4}; in test()
194 auto ret = std::ranges::remove(a, StrictComparable<int>{2}); in test()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.nonmodifying/alg.find/
H A Dranges.find.pass.cpp254 StrictComparable<int> a[] = {1, 2, 3, 4}; in test()
255 auto ret = std::ranges::find(a, a + 4, StrictComparable<int>{2}); in test()
259 StrictComparable<int> a[] = {1, 2, 3, 4}; in test()
260 auto ret = std::ranges::find(a, StrictComparable<int>{2}); in test()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/
H A Dranges.find_first_of.pass.cpp199 StrictComparable<int> a[] = {1, 2, 3, 4}; in test()
200 StrictComparable<int> b[] = {2, 3}; in test()