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_of

boost::compute::all_of

Synopsis

// In header: <boost/compute/algorithm/all_of.hpp>


template<typename InputIterator, typename UnaryPredicate> 
  bool all_of(InputIterator first, InputIterator last, 
              UnaryPredicate predicate, 
              command_queue & queue = system::default_queue());

Description

Returns true if predicate returns true for all of the elements in the range [first, last).

See Also:

any_of(), none_of()


PrevUpHomeNext