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

PrevUpHomeNext

Struct template max_assign<Left, Right, std_valarray_tag, std_valarray_tag>

boost::numeric::functional::max_assign<Left, Right, std_valarray_tag, std_valarray_tag>

Synopsis

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

template<typename Left, typename Right> 
struct max_assign<Left, Right, std_valarray_tag, std_valarray_tag> {
  // 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 public member functions

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

PrevUpHomeNext