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 to view this page for the latest version.
PrevUpHomeNext

Function template all

boost::algorithm::all — 'All' predicate

Synopsis

// In header: <boost/algorithm/string/predicate.hpp>


template<typename RangeT, typename PredicateT> 
  bool all(const RangeT & Input, PredicateT Pred);

Description

This predicate holds it all its elements satisfy a given condition, represented by the predicate.

[Note] Note

This function provides the strong exception-safety guarantee

Parameters:

Input

An input sequence

Pred

A predicate

Returns:

The result of the test


PrevUpHomeNext