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

Specifies that a type is one of several types. More...

Concept definition

template<class K, class ... L>
concept Qx::any_of = (std::same_as<K, L> || ...)
Specifies that a type is one of several types.
Definition qx-concepts.h:513

Detailed Description

Satisfied if K is the same as at least one of L.