| 54 | } |
| 55 | |
| 56 | size_t RemoveWhitespaceContext(StringPiece* text) { |
| 57 | absl::string_view new_text = absl::StripAsciiWhitespace(*text); |
| 58 | size_t count = text->size() - new_text.size(); |
| 59 | *text = new_text; |
| 60 | return count; |
| 61 | } |
| 62 | |
| 63 | bool ConsumeLeadingDigits(StringPiece* s, uint64* val) { |
| 64 | const char* p = s->data(); |