With same template declaration, is it possible to differ two functions with same name, same param list, but different return type?
template <class T>
int f()...
template <class T>
short f()...
Or, need some special code to achieve this?
Thanks.