Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template icontains

boost::algorithm::icontains — 'Contains' predicate ( case insensitive )

Synopsis

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


template<typename Range1T, typename Range2T> 
   ( Input,  Test, 
                  Loc = );

Description

This predicate holds when the test container is contained in the Input. 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