Home
last modified time | relevance | path

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 Dregular_invocable.compile.pass.cpp50 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 Dpredicate.subsumption.compile.pass.cpp16 constexpr bool check_subsumption(std::regular_invocable auto) { in check_subsumption()
/llvm-project-15.0.7/libcxx/include/__concepts/
H A Dpredicate.h29 regular_invocable<_Fn, _Args...> && __boolean_testable<invoke_result_t<_Fn, _Args...>>;
H A Dinvocable.h35 concept regular_invocable = invocable<_Fn, _Args...>; variable
/llvm-project-15.0.7/libcxx/include/__iterator/
H A Dconcepts.h195 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 Dconcepts109 // [concept.regularinvocable], concept regular_invocable
111 concept regular_invocable = see below;
H A Dranges172 regular_invocable<F&, range_reference_t<V>> &&
/llvm-project-15.0.7/libcxx/include/__ranges/
H A Dtransform_view.h50 regular_invocable<_Fn, range_reference_t<_View>>;
55 regular_invocable<_Fn&, range_reference_t<_View>> &&