| 111 | bool operator()(StringPiece sp) const { return !sp.empty(); } |
| 112 | }; |
| 113 | struct SkipWhitespace { |
| 114 | bool operator()(StringPiece sp) const { |
| 115 | return !absl::StripTrailingAsciiWhitespace(sp).empty(); |
| 116 | } |
| 117 | }; |
| 118 | |
| 119 | // Split strings using any of the supplied delimiters. For example: |
| 120 | // Split("a,b.c,d", ".,") would return {"a", "b", "c", "d"}. |
no outgoing calls