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_impl

boost::accumulators::impl::tail_impl

Synopsis

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

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

  // public member functions
   BOOST_MPL_ASSERT((mpl::or_< is_same< LeftRight, right >, is_same< LeftRight, left > >));
  template<typename Args> void operator()(Args const &);
  result_type result(dont_care) const;
  template<typename Archive> void serialize(Archive &, const unsigned int);

  // private member functions
  template<typename Args> void assign(Args const &, std::size_t);
};

Description

tail_impl public construct/copy/destruct

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

tail_impl public member functions

  1.  BOOST_MPL_ASSERT((mpl::or_< is_same< LeftRight, right >, is_same< LeftRight, left > >));
  2. template<typename Args> void operator()(Args const & args);
  3. result_type result(dont_care) const;
  4. template<typename Archive> 
      void serialize(Archive & ar, const unsigned int file_version);

tail_impl private member functions

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

PrevUpHomeNext