11.1.  Generics and Templates

[ fromfile: templates.xml id: templates ]

template <class T > class String { ... };
template <class T, int max > Buffer { ...
    T v[max];
};
String <char> s1;
Buffer <int, 10> intBuf10;