Searched defs:ToStringHelper (Results 1 – 1 of 1) sorted by relevance
13 struct ToStringHelper { struct24 static std::string Convert(const T& value) { return std::to_string(value); } in Convert()25 static std::string Convert(const char* value) { in Convert()28 static std::string Convert(const std::string& value) { return value; } in Convert()29 static std::string Convert(bool value) { return value ? "true" : "false"; } in Convert()56 return ToStringHelper::Convert(value); in ToString() argument