If I have a templated storage class, how can I create a specialized template for nested storage class. I already know how to specialize pointer template, but I don't know how to specialize this. EG:
template <typename Type>
class Array
{
///Array class code
};
int main()
{
Array<int> rob;
Array<Array<int> > bob;//I need bob to be specialized, but not rob
return 0;
}
Is this possible?