EndsWith overloads
Declared in <absl/strings/cord.h>
Determines whether the Cord ends with the passed string data rhs.
bool
EndsWith(std::string_view rhs) const;
» more...
Determines whether the Cord ends with the passed Cord rhs.
bool
EndsWith(Cord const& rhs) const;
» more...
true if the Cord ends with rhs.
| Name | Description |
|---|---|
| rhs | The suffix string to test for. |