[#absl-Cord-EndsWith-08] = xref:absl.adoc[absl]::xref:absl/Cord.adoc[Cord]::EndsWith :relfileprefix: ../../ :mrdocs: `EndsWith` overloads == Synopses Declared in `<absl/strings/cord.h>` Determines whether the Cord ends with the passed string data `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/Cord/EndsWith-0d.adoc[EndsWith](std::string_view rhs) const; ---- [.small]#xref:absl/Cord/EndsWith-0d.adoc[_» more..._]# Determines whether the Cord ends with the passed Cord `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/Cord/EndsWith-00.adoc[EndsWith](xref:absl/Cord.adoc[Cord] const& rhs) const; ---- [.small]#xref:absl/Cord/EndsWith-00.adoc[_» more..._]# == Return Value `true` if the Cord ends with `rhs`. == Parameters [cols="1,4"] |=== | Name| Description | *rhs* | The suffix string to test for. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#