...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::accumulators::accumulator_set — A set of accumulators.
// In header: <boost/accumulators/accumulators_fwd.hpp> template<typename Sample, typename Features, typename Weight> struct accumulator_set { // construct/copy/destruct template<typename A1> explicit accumulator_set(A1 const &, unspecified = unspecified); template<typename A1> explicit accumulator_set(A1 const &, unspecified = unspecified); // public member functions template<typename UnaryFunction> void visit(UnaryFunction const &); template<typename FilterPred, typename UnaryFunction> void visit_if(UnaryFunction const &); void operator()(); template<typename Feature> apply< Feature >::type & extract(); template<typename Feature> apply< Feature >::type const & extract() const; template<typename Feature> void drop(); template<typename Archive> void serialize(Archive &, const unsigned int); };
accumulator_set resolves the dependencies between features and ensures that the accumulators in the set are updated in the proper order.
acccumulator_set provides a general mechanism to visit the accumulators in the set in order, with or without a filter. You can also fetch a reference to an accumulator that corresponds to a feature.
accumulator_set
public
construct/copy/destructtemplate<typename A1> explicit accumulator_set(A1 const & a1, unspecified = unspecified);
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Parameters: |
|
template<typename A1> explicit accumulator_set(A1 const & a1, unspecified = unspecified);
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Parameters: |
|
accumulator_set
public member functionstemplate<typename UnaryFunction> void visit(UnaryFunction const & func);
Visitation
Parameters: |
|
template<typename FilterPred, typename UnaryFunction> void visit_if(UnaryFunction const & func);
Conditional visitation
Parameters: |
|
void operator()();
Accumulation
template<typename Feature> apply< Feature >::type & extract();Extraction.
template<typename Feature> apply< Feature >::type const & extract() const;
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
template<typename Feature> void drop();Drop.
template<typename Archive> void serialize(Archive & ar, const unsigned int file_version);