EndsWith overloads

Synopses

Declared in <absl/strings/cord.h>

Determines whether the Cord ends with the passed string data rhs.

bool
EndsWith(std::string_view rhs) const;

Determines whether the Cord ends with the passed Cord rhs.

bool
EndsWith(Cord const& rhs) const;

Return Value

true if the Cord ends with rhs.

Parameters

Name

Description

rhs

The suffix string to test for.

Created with MrDocs