vega
string_impl.h
Go to the documentation of this file.
1 namespace vega {
2  template <typename T>
3  std::string to_string(const T& t) {
4  return t.str();
5  }
6 
7  template <typename T>
8  T from_string(const std::string& s) {
9  return T{s};
10  }
11 }
T from_string(const std::string &s)
Definition: string_impl.h:8
std::string to_string(const T &t)
Definition: string_impl.h:3
Definition: age.h:6