Guest User

Untitled

a guest
May 20th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. template<typename T>
  2. T lexical(const std::string& str)
  3. {
  4.     __declspec(thread) static std::istringstream is(str);
  5.     T result;
  6.     return is >> result ? result : 0;
  7. }
Add Comment
Please, Sign In to add comment