| 2396 | static ssize_t to_int(const string_t& str) { return traits::to_int(str.c_str()); } |
| 2397 | |
| 2398 | static bool is_control(char_t c) { switch (traits::to_wchar(c)) { case L'\n': case L'\r': return true; } return false; } |
| 2399 | |
| 2400 | static typename string_t::size_type next_token(const string_t& str, char_t delim, typename string_t::const_pointer off) { |
| 2401 | typename string_t::const_pointer p = off, end = str.c_str() + str.length(); |
nothing calls this directly
no outgoing calls
no test coverage detected