Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
any_of.hpp File Reference

Test ranges to see if any elements match a value or predicate. More...

#include <algorithm>
#include <boost/range/begin.hpp>
#include <boost/range/end.hpp>
Include dependency graph for any_of.hpp:

Namespaces

 boost
 Duration formatting facet for input.
 
 boost::algorithm
 

Functions

template<typename InputIterator , typename Predicate >
bool boost::algorithm::any_of (InputIterator first, InputIterator last, Predicate p)
 
template<typename Range , typename Predicate >
bool boost::algorithm::any_of (const Range &r, Predicate p)
 
template<typename InputIterator , typename V >
bool boost::algorithm::any_of_equal (InputIterator first, InputIterator last, const V &val)
 
template<typename Range , typename V >
bool boost::algorithm::any_of_equal (const Range &r, const V &val)
 

Detailed Description

Test ranges to see if any elements match a value or predicate.

Author
Marshall Clow