Hello everyone,
I can not find precise definition for typed argument for template and non-typed argument for template.
My understanding is,
code like
T is typed template argument, and size is non-typed template argument. My understanding correct?
thanks in advance,
George
I can not find precise definition for typed argument for template and non-typed argument for template.
My understanding is,
code like
Code:
template <class T, int size> class Foo {
// ...
}
T is typed template argument, and size is non-typed template argument. My understanding correct?
thanks in advance,
George