| 578 | |
| 579 | template<class T> |
| 580 | inline std::string to_string(T x) { |
| 581 | std::stringstream ss; |
| 582 | ss << x; |
| 583 | return ss.str(); |
| 584 | } |
| 585 | |
| 586 | inline void split(const std::string &text, char sep, std::vector<std::string> &tokens, bool skip_empty = false) |
| 587 | { |
no test coverage detected