Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/include/__functional/
H A Dranges_operations.h51 requires totally_ordered_with<_Tp, _Up>
62 requires totally_ordered_with<_Tp, _Up>
73 requires totally_ordered_with<_Tp, _Up>
84 requires totally_ordered_with<_Tp, _Up>
/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.compare/concepts.totallyordered/
H A Dtotally_ordered_with.pass.cpp33 constexpr bool result = std::totally_ordered_with<T, U>; in check_totally_ordered_with()
34 static_assert(std::totally_ordered_with<U, T> == result); in check_totally_ordered_with()
35 static_assert(std::totally_ordered_with<T, U const> == result); in check_totally_ordered_with()
36 static_assert(std::totally_ordered_with<T const, U const> == result); in check_totally_ordered_with()
37 static_assert(std::totally_ordered_with<T, U const&> == result); in check_totally_ordered_with()
39 static_assert(std::totally_ordered_with<T&, U const> == result); in check_totally_ordered_with()
41 static_assert(std::totally_ordered_with<T&, U const&> == result); in check_totally_ordered_with()
43 static_assert(std::totally_ordered_with<T, U const&&> == result); in check_totally_ordered_with()
45 static_assert(std::totally_ordered_with<T&, U const&&> == result); in check_totally_ordered_with()
47 static_assert(std::totally_ordered_with<T&&, U const> == result); in check_totally_ordered_with()
[all …]
/llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/reverse.iterators/
H A Diterator_concept_conformance.compile.pass.cpp59 static_assert( std::totally_ordered_with<std::reverse_iterator<int*>, std::reverse_iterator<const i…
60 static_assert(!std::totally_ordered_with<std::reverse_iterator<int*>, std::reverse_iterator<char*>>…
/llvm-project-15.0.7/libcxx/include/__concepts/
H A Dtotally_ordered.h44 concept totally_ordered_with = variable
/llvm-project-15.0.7/libcxx/docs/Status/
H A DSpaceshipPapers.csv3 `P2404R0 <https://wg21.link/P2404>`_,"Relaxing equality_comparable_with's, totally_ordered_with's, …
H A DCxx2bPapers.csv70 …3>`__","LWG","Move-only types for ``equality_comparable_with``, ``totally_ordered_with``, and ``th…
H A DCxx20Issues.csv253 "`3329 <https://wg21.link/LWG3329>`__","``totally_ordered_with``\ both directly and indirectly req…
/llvm-project-15.0.7/libcxx/include/
H A Dconcepts92 concept totally_ordered_with = see below;
/llvm-project-15.0.7/libcxx/include/__ranges/
H A Diota_view.h315 if constexpr (totally_ordered_with<_Start, _BoundSentinel>) {