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 to view this page for the latest version.
PrevUpHomeNext

Struct template droppable_accumulator

boost::accumulators::droppable_accumulator

Synopsis

// In header: <boost/accumulators/accumulators_fwd.hpp>

template<typename Accumulator> 
struct droppable_accumulator :
  public boost::accumulators::droppable_accumulator_base< Accumulator >
{
  // construct/copy/destruct
  template<typename Args> droppable_accumulator(Args const &);
  droppable_accumulator(droppable_accumulator const &);
};

Description

droppable_accumulator public construct/copy/destruct

  1. template<typename Args> droppable_accumulator(Args const & args);
  2. droppable_accumulator(droppable_accumulator const & that);

PrevUpHomeNext