...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::mpi::maximum — Compute the maximum of two values.
// In header: <boost/mpi/operations.hpp> template<typename T> struct maximum { // types typedef T first_argument_type; typedef T second_argument_type; typedef T result_type; // public member functions const T & operator()(const T &, const T &) const; };