Variable Acts::Concepts::has_member¶
Defined in File TypeTraits.hpp
Variable Documentation¶
-
template<typename
T, template<class...> classM, typenameV>
constexpr boolActs::Concepts::has_member= identical_to<V, M, T>¶ Helper to assert if a member of a given type exists.
Basically only calls into
identical_tobut is nicer to read.- Template Parameters
T: The type to check existence of member on.M: The member type traitV: The type that the member is supposed to have.