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

Function StripSuffixString

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

Source from the content-addressed store, hash-verified

37}
38
39string StripSuffixString(StringPiece str, const StringPiece& suffix) {
40 if (str.ends_with(suffix))
41 str.remove_suffix(suffix.length());
42 return str.as_string();
43}
44
45bool TryStripSuffixString(StringPiece str, const StringPiece& suffix,
46 string* result) {

Callers 1

HasGoodGdbMethod · 0.85

Calls 4

ends_withMethod · 0.80
remove_suffixMethod · 0.80
as_stringMethod · 0.80
lengthMethod · 0.45

Tested by

no test coverage detected