| 42 | // a string which is returned. |
| 43 | template <typename... Ts> |
| 44 | std::string StrCat(Ts&&... args) { |
| 45 | std::ostringstream out; |
| 46 | (out << ... << std::forward<Ts>(args)); |
| 47 | return out.str(); |
| 48 | } |
| 49 | |
| 50 | // Similar to StrCat(), append arguments, converted to strings to "dest" |
| 51 | // string. |
no outgoing calls