O
Old Wolf
I have a template class like this:
template<typename T, int N>
struct Foo
{
...........
};
which I have successfully specialized for some types, eg:
template<int N>
struct Foo<std::string, N>
{ ...... }
Is it possible to specialize it so that T is a std:
air<A,B>
where A and B are new template parameters?
template<typename T, int N>
struct Foo
{
...........
};
which I have successfully specialized for some types, eg:
template<int N>
struct Foo<std::string, N>
{ ...... }
Is it possible to specialize it so that T is a std:
where A and B are new template parameters?