Searched refs:regular_invocable (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/libcxx/test/std/concepts/concepts.callable/concept.regularinvocable/ |
| H A D | regular_invocable.compile.pass.cpp | 50 static_assert(!std::regular_invocable<void(), int>); 51 static_assert(!std::regular_invocable<void(int)>); 59 static_assert(!std::regular_invocable<void>); 60 static_assert(!std::regular_invocable<void*>); 61 static_assert(!std::regular_invocable<int>); 62 static_assert(!std::regular_invocable<int&>); 63 static_assert(!std::regular_invocable<int&&>); 159 static_assert(!std::regular_invocable< 167 static_assert(!std::regular_invocable< 224 static_assert(!std::regular_invocable< [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/concepts/concepts.callable/concept.predicate/ |
| H A D | predicate.subsumption.compile.pass.cpp | 16 constexpr bool check_subsumption(std::regular_invocable auto) { in check_subsumption()
|
| /llvm-project-15.0.7/libcxx/include/__concepts/ |
| H A D | predicate.h | 29 regular_invocable<_Fn, _Args...> && __boolean_testable<invoke_result_t<_Fn, _Args...>>;
|
| H A D | invocable.h | 35 concept regular_invocable = invocable<_Fn, _Args...>; variable
|
| /llvm-project-15.0.7/libcxx/include/__iterator/ |
| H A D | concepts.h | 195 regular_invocable<_Fp&, iter_value_t<_It>&> && 196 regular_invocable<_Fp&, iter_reference_t<_It>> && 197 regular_invocable<_Fp&, iter_common_reference_t<_It>> &&
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | concepts | 109 // [concept.regularinvocable], concept regular_invocable 111 concept regular_invocable = see below;
|
| H A D | ranges | 172 regular_invocable<F&, range_reference_t<V>> &&
|
| /llvm-project-15.0.7/libcxx/include/__ranges/ |
| H A D | transform_view.h | 50 regular_invocable<_Fn, range_reference_t<_View>>; 55 regular_invocable<_Fn&, range_reference_t<_View>> &&
|