I was wondering if there is a way to place a non template function within a template class. Simply put I don't want to compiler to repeat the function for each type since the function is only manipulating pointers hence there is no type. Is this possible?
so if you have code like this
template <typename T>
class CLASS{
};
then each function within will be repeated for each type T I simply don't want that to happen
I would like a function that is Static to all Types and there for does not repeat in memory for each individual type.
Inherit the function from a base class