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 an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Struct template promote<ToFrom, ToFrom, std_vector_tag, std_vector_tag>

boost::numeric::functional::promote<ToFrom, ToFrom, std_vector_tag, std_vector_tag>

Synopsis

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

template<typename ToFrom> 
struct promote<ToFrom, ToFrom, std_vector_tag, std_vector_tag> {
  // types
  typedef ToFrom argument_type;
  typedef ToFrom result_type;  

  // public member functions
  ToFrom & operator()(ToFrom &) const;
};

Description

promote public member functions

  1. ToFrom & operator()(ToFrom & tofrom) const;

PrevUpHomeNext