Home | Libraries | People | FAQ | More |
boost::algorithm::contains — 'Contains' predicate
template<typename Range1T, typename Range2T, typename PredicateT> bool contains(const Range1T & Input, const Range2T & Test, PredicateT Comp); template<typename Range1T, typename Range2T> bool contains(const Range1T & Input, const Range2T & Test);
This predicate holds when the test container is contained in the Input. When the optional predicate is specified, it is used for character-wise comparison.
Parameters
An element comparison predicate
An input sequence
A test sequence
Returns:
The result of the test
Notes:
This function provides the strong exception-safety guarantee
Copyright © 2002-2004 Pavol Droba |