I never seem to be able to get this right. Here I have some code:
template class A {
void f (T);
};
template void A::f (T) {
}
template void A::f (T) {
}
The goal of that code is to partially specialize A::f() for
certain values of N, leaving T unconstrained. The syntax is what I
could pick up from this site: