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

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template is_partitioned

boost::algorithm::is_partitioned — Tests to see if a sequence is partitioned according to a predicate. In other words, all the items in the sequence that satisfy the predicate are at the beginning of the sequence.

Synopsis

// In header: <boost/algorithm/cxx11/is_partitioned.hpp>


template<typename InputIterator, typename UnaryPredicate> 
  BOOST_CXX14_CONSTEXPR bool 
  is_partitioned(InputIterator first, InputIterator last, UnaryPredicate p);

Description

[Note] Note

This function is part of the C++2011 standard library.

Parameters:

first

The start of the input sequence

last

One past the end of the input sequence

p

The predicate to test the values with


PrevUpHomeNext