| 30 | // Is character a whitespace. |
| 31 | template <typename String> |
| 32 | bool is_whitespace(const typename String::value_type& c) |
| 33 | { |
| 34 | return (c == 32 || is_in_interval(9, 14, static_cast<int>(c))); |
| 35 | } |
| 36 | |
| 37 | // API search type: is_line_break : Char -> Bool |
| 38 | // fwd bind count: 0 |
nothing calls this directly
no test coverage detected