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 none_of

boost::compute::none_of

Synopsis

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


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

Description

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

Space complexity: \Omega(1)

See Also:

all_of(), any_of()


PrevUpHomeNext