| 247 | */ |
| 248 | template <typename T> |
| 249 | std::string ToString(const T& t) |
| 250 | { |
| 251 | std::ostringstream oss; |
| 252 | oss.imbue(std::locale::classic()); |
| 253 | oss << t; |
| 254 | return oss.str(); |
| 255 | } |
| 256 | |
| 257 | /** |
| 258 | * Check whether a container begins with the given prefix. |