...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Return whether the string ends with a string.
constexpr bool ends_with( const_pointer s) const;
Returns true
if the string
ends with the string pointed to be s
of length traits_type::length(s)
, and false
otherwise.
Linear.
Name |
Description |
---|---|
|
The string to check for. |