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
boost::algorithm::icontains — 'Contains' predicate ( case insensitive )
template<typename Range1T, typename Range2T> bool icontains(const Range1T & Input, const Range2T & Test, const std::locale & Loc = std::locale());
This predicate holds when the test container is contained in the Input. Elements are compared case insensitively.
| Parameters: |
|
||||||
| Returns: | The result of the test |
||||||
| Notes: | This function provides the strong exception-safety guarantee |
| Copyright © 2002-2004 Pavol Droba |