Advertisement
shamiul93

to_String C++

Dec 27th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. namespace patch
  2. {
  3. template < typename T > std::string to_string( const T& n )
  4. {
  5.     std::ostringstream stm ;
  6.     stm << n ;
  7.     return stm.str() ;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement