MCPcopy Create free account
hub / github.com/apache/impala / StripTrailingWhitespace

Function StripTrailingWhitespace

be/src/gutil/strings/strip.cc:335–341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

333}
334
335void StripTrailingWhitespace(string* const s) {
336 string::size_type i;
337 for (i = s->size(); i > 0 && ascii_isspace((*s)[i - 1]); --i) {
338 }
339
340 s->resize(i);
341}
342
343// ----------------------------------------------------------------------
344// TrimRunsInString

Callers 2

AddInfoStringInternalMethod · 0.85

Calls 3

ascii_isspaceFunction · 0.85
resizeMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected