Struct template bitwise_or
boost::mpi::bitwise_or — Compute the bitwise OR of two integral values. 
 
Synopsis
template<typename T> 
struct bitwise_or : public std::binary_function< T, T, T > {
  
  T operator()(const T &, const T &) const;
};
Description
Этот объект двоичной функции вычисляет побитовое ИЛИ двух заданных им значений. При использовании с MPI и типом<T>, который имеет связанный, встроенный тип данных MPI, переводится как<MPI_BOR>.
bitwise_or public member functions
- <Toperator()(constT&x,constT&y)const; >