Variable Acts::Concepts::has_method¶
Defined in File TypeTraits.hpp
Variable Documentation¶
-
template<typename
T, typenameR, template<class...> classM, typename ...Arguments>
constexpr boolActs::Concepts::has_method= M<T, R, Arguments...>::template tv<T>::value¶ Helper which evaluates whether the type
Thas a method with a given signature.- Template Parameters
T: The type to check on. This can contain a const qualifier if you want to check on that.R: The return typeM: The method trait, as generated by METHOD_TRAITArguments: The argument types that make up the signature.