When I\'m writing a function in a template class how can I find out what my T is?
e.g.
template ostream& operator << (os
Define it explicitly, e.g.:
template <> ostream& operator << (ostream &out,Vector& vec) { }