Boost C++ Libraries Home Libraries People FAQ More

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  ; 
  typedef  ;
  typedef  ;         

  // public member functions
   (, ) ;
};

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.  ( x,  y) ;

    Returns:

    x & y.


PrevUpHomeNext