...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::impl::tail_impl
// 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); };
tail_impl
public
construct/copy/destructtemplate<typename Args> tail_impl(Args const & args);
tail_impl(tail_impl const & that);