rstd 0.1.0
Loading...
Searching...
No Matches
rstd::mtp::is_trait_api Concept Referenceexport
module rstd.core

Checks whether T is a valid trait API type with an associated Trait and type info. More...

Concept definition

template<typename T>
concept rstd::mtp::is_trait_api = requires() {
typename T::Trait;
typename mtp::TraitApiTraits<T>::type;
}
Checks whether T is a valid trait API type with an associated Trait and type info.
Definition trait.cppm:28

Detailed Description

Checks whether T is a valid trait API type with an associated Trait and type info.