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 a snapshot of the develop branch, built from commit 09fbc2c975.
PrevUpHomeNext

Struct template max_assign_base

boost::numeric::functional::max_assign_base

Synopsis

// In header: <boost/accumulators/numeric/functional.hpp>

template<typename Left, typename Right, typename EnableIf> 
struct max_assign_base {
  // types
  typedef Left  first_argument_type; 
  typedef Right second_argument_type;
  typedef void  result_type;         

  // public member functions
  void operator()(Left &, Right &) const;
};

Description

max_assign_base public member functions

  1. void operator()(Left & left, Right & right) const;

PrevUpHomeNext