Is it possible to perform a check on a template type to determine if it is a template itself? I was looking for something like is_template in type_traits but couldn't find it.
1 2 3 4
template<typename T>
class Something {
// need to know if T is a template class itself...???
};
Thank you for any assistance that is offered.
Kind Regards,
Phil.