| 108 | bool operator()(StringPiece sp) const { return true; } |
| 109 | }; |
| 110 | struct SkipEmpty { |
| 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(); |
no outgoing calls