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

Checks whether type A implements all the given traits T. More...

Concept definition

template<typename A, typename... T>
concept rstd::Impled = (mtp::check_trait<T, mtp::rm_cvf<A>>() && ...)
Checks whether type A implements all the given traits T.
Definition trait.cppm:246

Detailed Description

Checks whether type A implements all the given traits T.

Template Parameters
AThe type to check.
TThe trait types to verify.