Qx v0.5.7
Qt Extensions Library
Loading...
Searching...
No Matches
Qx::defines_call_for_s Concept Reference

Specifies that a type defines a call operator for the specified argument types (with strict return). More...

Concept definition

template<class K, typename R, typename... Types>
concept Qx::defines_call_for_s = requires(K klass, Types... args) {{ klass(args...) } -> std::same_as<R>;}
Specifies that a type defines a call operator for the specified argument types (with strict return).
Definition qx-concepts.h:253

Detailed Description

Satisfied if K has a call operator defined for the specified types that returns R.