| 6367 | namespace TextFlow { |
| 6368 | |
| 6369 | inline auto isWhitespace(char c) -> bool { |
| 6370 | static std::string chars = " \t\n\r"; |
| 6371 | return chars.find(c) != std::string::npos; |
| 6372 | } |
| 6373 | inline auto isBreakableBefore(char c) -> bool { |
| 6374 | static std::string chars = "[({<|"; |
| 6375 | return chars.find(c) != std::string::npos; |
no test coverage detected