If a template class requires a template argument to determine the size of a member array, will that mean the methods are "duplicated" each time a different template parameter is used to instantiate the class? Worried about code bloat.
Are all template functions inlined or are they the same as functions using the inline keyword where the compiler can decide when to inline them? Any experience with how well the compiler makes these decisions?
What is the best method for using templates on a DSP with limited memory?
Thanks
Chris