Qx v0.7
Qt Extensions Library
Loading...
Searching...
No Matches
Qx::derived_from_specialization_of Concept Reference

Specifies that a type is a derivation of any specialization of a template. More...

Concept definition

template<class K, template< class... > class L>
concept Qx::derived_from_specialization_of = requires(const K& k) { _QxPrivate::derived_from_specialization_impl<L>(k); }
Specifies that a type is a derivation of any specialization of a template.
Definition qx-concepts.h:516
The Qx namespace is the main namespace through which all non-global functionality of the Qx library i...
Definition qx-abstracterror.cpp:13

Detailed Description

Satisfied if K is derived from L with any parameters.