| 59 | } |
| 60 | |
| 61 | static bool WhitespaceOnly(string_view s) { |
| 62 | return s.find_first_not_of(" \t\r\n") == string_view::npos; |
| 63 | } |
| 64 | |
| 65 | static bool WhitespaceOnly(const std::shared_ptr<Buffer>& b) { |
| 66 | return WhitespaceOnly(string_view(*b)); |
no outgoing calls
no test coverage detected