Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/iterators/iterator.requirements/alg.req.sortable/
H A Dsortable.compile.pass.cpp19 using CompDefault = std::ranges::less; typedef
23 static_assert( std::indirect_strict_weak_order<CompDefault, AllConstraintsSatisfied>);
31 static_assert(!std::indirect_strict_weak_order<CompDefault, Foo*>);
32 static_assert( std::indirect_strict_weak_order<CompDefault, std::projected<Foo*, Proj>>);
33 static_assert(!std::sortable<Foo*, CompDefault>);
34 static_assert( std::sortable<Foo*, CompDefault, Proj>);
/llvm-project-15.0.7/libcxx/test/std/iterators/iterator.requirements/alg.req.mergeable/
H A Dmergeable.compile.pass.cpp22 using CompDefault = std::ranges::less; typedef
36 static_assert( std::indirect_strict_weak_order<CompDefault, Input, Input>);
38 static_assert( std::indirect_strict_weak_order<CompDefault, Input, InputLong>);
50 static_assert( std::indirect_strict_weak_order<CompDefault,
52 static_assert( std::mergeable<Foo*, Foo*, Foo*, CompDefault, ProjFooToInt, ProjFooToLong>);
69 static_assert( std::indirect_strict_weak_order<CompDefault, Input, Input>);
83 static_assert( std::indirect_strict_weak_order<CompDefault, Input, InputLong>);
111 static_assert( std::mergeable<Input, Input, Output, CompDefault, ProjectionOnlyMutable, ProjectionO…