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

Specifies that a type defines an address-of operator (with strict return). More...

Concept definition

template<class K, typename R>
concept Qx::defines_address_of_s = requires(K klass) {{ &klass } -> std::same_as<R*>;}
Specifies that a type defines an address-of operator (with strict return).
Definition qx-concepts.h:235

Detailed Description

Satisfied if K has an address-of operator defined that returns R*.