35 #ifndef _BLAZE_UTIL_TYPETRAITS_ISBASEOF_H_ 36 #define _BLAZE_UTIL_TYPETRAITS_ISBASEOF_H_ 43 #include <type_traits> 79 template<
typename Base,
typename Derived >
81 :
public BoolConstant< std::is_base_of< RemoveCV_t<Base>, RemoveCV_t<Derived> >::value >
99 template<
typename Base,
typename Derived >
Header file for the RemoveCV type trait.
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:72
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool IsBaseOf_v
Auxiliary variable template for the IsBaseOf type trait.The IsBaseOf_v variable template provides a c...
Definition: IsBaseOf.h:100
Header file for the IntegralConstant class template.
Compile time analysis of an inheritance relationship.This type trait tests for an inheritance relatio...
Definition: IsBaseOf.h:80