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

Struct template bitwise_and

boost::mpi::bitwise_and — Compute the bitwise AND of two integral values.

Synopsis

// In header: <boost/mpi/operations.hpp>

template<typename T> 
struct bitwise_and {
  // types
  typedef T first_argument_type; 
  typedef T second_argument_type;
  typedef T result_type;         

  // public member functions
  T operator()(const T &, const T &) const;
};

Description

This binary function object computes the bitwise AND of the two values it is given. When used with MPI and a type T that has an associated, built-in MPI data type, translates to MPI_BAND.

bitwise_and public member functions

  1. T operator()(const T & x, const T & y) const;

    Returns:

    x & y.


PrevUpHomeNext