Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext
decode_view::ends_with (2 of 2 overloads)

Checks if the string ends with the given prefix.

Synopsis
bool
ends_with(
    char ch) const;
Example
assert( decode_view( "Program%20Files" ).ends_with( 's' ) );
Complexity

Constant.

Exception Safety

Throws nothing.


PrevUpHomeNext