Home
last modified time | relevance | path

Searched defs:ToStringHelper (Results 1 – 1 of 1) sorted by relevance

/third_party/node/src/
Ddebug_utils-inl.h13 struct ToStringHelper { struct
24 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