Home | Libraries | People | FAQ | More |
boost::accumulators::extractor
// In header: <boost/accumulators/framework/extractor.hpp> template<typename Feature> struct extractor { // types typedef extractor< Feature > this_type; // member classes/structs/unions template<typename A1> struct result<this_type(A1)> { }; // public member functions template<typename Arg1> unspecified operator()(Arg1 const &) const; template<typename AccumulatorSet, typename A1> unspecified operator()(AccumulatorSet const &, A1 const &) const; template<typename AccumulatorSet, typename A1, typename A2, ... > unspecified operator()(AccumulatorSet const &, A1 const &, A2 const &, ...); };
Extracts the result associated with Feature from the specified accumulator_set.
extractor
public member functionstemplate<typename Arg1> unspecified operator()(Arg1 const & arg1) const;
Extract the result associated with Feature from the accumulator set
template<typename AccumulatorSet, typename A1> unspecified operator()(AccumulatorSet const & acc, A1 const & a1) const;
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 AccumulatorSet, typename A1, typename A2, ... > unspecified operator()(AccumulatorSet const & acc, A1 const & a1, A2 const & a2, ...);
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.