template<typename T, typename U>
struct kumi::is_instance_of< T, U >
Checks if a type is an instance of a specific template.
- Template Parameters
-
| T | The type to inspect |
| U | the target template |
Helper type
{
template<typename T, typename U> using is_instance_of_t = typename is_instance_of_t<T,U>::type;
}
Main KUMI namespace.
Definition algorithm.hpp:11
Helper value
{
template<typename T, typename U> inline constexpr bool is_instance_of_v<T,U>::value;
}