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

Class template binary_negate

boost::compute::binary_negate

Synopsis

// In header: <boost/compute/functional/logical.hpp>

template<typename Predicate> 
class binary_negate :
  public boost::compute::binary_function< void, void, int >
{
public:

  // public member functions
  explicit binary_negate(Predicate);
};

Description

The binnary_negate function adaptor negates a binary function.

See Also: not2()

binary_negate public member functions

  1. explicit binary_negate(Predicate pred);

PrevUpHomeNext