If I have a template class:
template <class T>
class myclass
{
public:
T function();
}
and it has a member function for example T function(),
it is possible to define it separately for different kind of template parameters?
So define somehow:
int myclass::function();
double myclass::function();
mystruct myclass::function();
with totally different kind of code?