Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.compare/concepts.totallyordered/
H A Dtotally_ordered.pass.cpp38 template <std::totally_ordered T>
70 static_assert(!std::totally_ordered<S>);
71 static_assert(!std::totally_ordered<int S::*>);
72 static_assert(!std::totally_ordered<int (S::*)()>);
97 static_assert(!std::totally_ordered<void>);
133 static_assert(!std::totally_ordered<no_eq>);
134 static_assert(!std::totally_ordered<no_neq>);
135 static_assert(!std::totally_ordered<no_lt>);
136 static_assert(!std::totally_ordered<no_gt>);
137 static_assert(!std::totally_ordered<no_le>);
[all …]
H A Dtotally_ordered_with.pass.cpp1116 std::totally_ordered<no_lt_not_totally_ordered_with>&&
1122 std::totally_ordered<no_gt_not_totally_ordered_with>&&
1128 std::totally_ordered<no_le_not_totally_ordered_with>&&
1134 std::totally_ordered<no_ge_not_totally_ordered_with>&&
/llvm-project-15.0.7/libcxx/include/__concepts/
H A Dtotally_ordered.h41 concept totally_ordered = equality_comparable<_Tp> && __partially_ordered_with<_Tp, _Tp>; variable
45 totally_ordered<_Tp> && totally_ordered<_Up> &&
47 totally_ordered<
/llvm-project-15.0.7/libcxx/include/__ranges/
H A Diota_view.h75 __decrementable<_Iter> && totally_ordered<_Iter> &&
198 requires totally_ordered<_Start>
205 requires totally_ordered<_Start>
212 requires totally_ordered<_Start>
219 requires totally_ordered<_Start>
225 requires totally_ordered<_Start> && three_way_comparable<_Start>
/llvm-project-15.0.7/libcxx/include/
H A Dconcepts88 // [concept.totallyordered], concept totally_ordered
90 concept totally_ordered = see below;
154 #include <__concepts/totally_ordered.h>
H A DCMakeLists.txt258 __concepts/totally_ordered.h
H A Dmodule.modulemap.in570 module totally_ordered { private header "__concepts/totally_ordered.h" }
/llvm-project-15.0.7/libcxx/test/std/utilities/charconv/charconv.syn/
H A Dto_chars_result.pass.cpp48 static_assert(!std::totally_ordered<std::to_chars_result>); in main()
H A Dfrom_chars_result.pass.cpp48 static_assert(!std::totally_ordered<std::from_chars_result>); in main()
/llvm-project-15.0.7/libcxx/include/__iterator/
H A Dconcepts.h155 totally_ordered<_Ip> &&
H A Diterator_traits.h193 totally_ordered<_Ip> &&
/llvm-project-15.0.7/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn319 "__concepts/totally_ordered.h",
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx20Issues.csv255 "`3331 <https://wg21.link/LWG3331>`__","Define ``totally_ordered/_with``\ in terms of ``partially-…