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

Tell if a sequence is partitioned. More...

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

Namespaces

 boost
 Duration formatting facet for input.
 
 boost::algorithm
 

Functions

template<typename InputIterator , typename UnaryPredicate >
bool boost::algorithm::is_partitioned (InputIterator first, InputIterator last, UnaryPredicate p)
 Tests to see if a sequence is partitioned according to a predicate. More...
 
template<typename Range , typename UnaryPredicate >
bool boost::algorithm::is_partitioned (const Range &r, UnaryPredicate p)
 Generates an increasing sequence of values, and stores them in the input Range. More...
 

Detailed Description

Tell if a sequence is partitioned.

Author
Marshall Clow