Ejemplo n.º 1
0
string to_string(T t) {
    stringstream s;
    s << t;
    return s.str();
}