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

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Function template iends_with

boost::algorithm::iends_with — 'Ends with' predicate ( case insensitive )

Synopsis

// In header: <boost/algorithm/string/predicate.hpp>


template<typename Range1T, typename Range2T> 
  bool iends_with(const Range1T & Input, const Range2T & Test, 
                  const std::locale & Loc = std::locale());

Description

This predicate holds when the test container is a suffix of the Input. In other words, if the input ends with the test. Elements are compared case insensitively.

[Note] Note

This function provides the strong exception-safety guarantee

Parameters:

Input

An input sequence

Loc

A locale used for case insensitive comparison

Test

A test sequence

Returns:

The result of the test


PrevUpHomeNext