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 mean_impl

boost::accumulators::impl::mean_impl

Synopsis

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

template<typename Sample, typename SumFeature> 
struct mean_impl : public accumulator_base {
  // construct/copy/destruct
  mean_impl(dont_care);

  // public member functions
  template<typename Args> result_type result(Args const &) const;
  template<typename Archive> void serialize(Archive &, const unsigned int);
};

Description

mean_impl public construct/copy/destruct

  1. mean_impl(dont_care);

mean_impl public member functions

  1. template<typename Args> result_type result(Args const & args) const;
  2. template<typename Archive> 
      void serialize(Archive & ar, const unsigned int file_version);

PrevUpHomeNext