I want to specialize a template for the arguments of an STL vector template. Something like that:
I don't care what the type of the vector element is. I would like to use it as follows:
A<int> a1;
In general, I'm trying to define something similar to boost type properties. Sort of
template <class T> struct is_stl_vector {
I cannot use a template template (I think so), because it must also compile for types without templates. Is it even possible?
source share