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 tail_variate_impl

boost::accumulators::impl::tail_variate_impl

Synopsis

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

template<typename VariateType, typename VariateTag, typename LeftRight> 
struct tail_variate_impl : public accumulator_base {
  // construct/copy/destruct
  template<typename Args> tail_variate_impl(Args const &);

  // public member functions
  template<typename Args> void assign(Args const &, std::size_t);
  template<typename Args> result_type result(Args const &) const;

  // private member functions
  template<typename TailRng> result_type do_result(TailRng const &) const;
};

Description

tail_variate_impl public construct/copy/destruct

  1. template<typename Args> tail_variate_impl(Args const & args);

tail_variate_impl public member functions

  1. template<typename Args> void assign(Args const & args, std::size_t index);
  2. template<typename Args> result_type result(Args const & args) const;

tail_variate_impl private member functions

  1. template<typename TailRng> result_type do_result(TailRng const & rng) const;

PrevUpHomeNext