From 5cde13f21d36c7224b0e13d11c4b49379ae5210d Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Thu, 6 Oct 2016 10:38:45 +0900 Subject: Imported Upstream version 1.61.0 Change-Id: I96a1f878d1e6164f01e9aadd5147f38fca448d90 Signed-off-by: DongHun Kwak --- doc/html/boost/accumulators/extractor.html | 57 +++++++++++++++--------------- 1 file changed, 29 insertions(+), 28 deletions(-) (limited to 'doc/html/boost/accumulators/extractor.html') diff --git a/doc/html/boost/accumulators/extractor.html b/doc/html/boost/accumulators/extractor.html index bd3e2b55dc..59f051d8fa 100644 --- a/doc/html/boost/accumulators/extractor.html +++ b/doc/html/boost/accumulators/extractor.html @@ -4,11 +4,11 @@ Struct template extractor - + - - - + + + @@ -21,57 +21,58 @@

-PrevUpHomeNext +PrevUpHomeNext

Struct template extractor

-

boost::accumulators::extractor — Extracts the result associated with Feature from the specified accumulator_set.

+

boost::accumulators::extractor

Synopsis

-
// In header: <boost/accumulators/accumulators_fwd.hpp>
+
// In header: <boost/accumulators/framework/extractor.hpp>
 
 template<typename Feature> 
 struct extractor {
+  // types
+  typedef extractor< Feature > this_type;
 
-  // public member functions
-  template<typename Arg1> unspecified operator()(Arg1 const &) const;
+  // 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;
+    unspecified operator()(AccumulatorSet const &, A1 const &) const;
   template<typename AccumulatorSet, typename A1, typename A2, ... > 
-    unspecified operator()(AccumulatorSet const &, A1 const &, A2 const &, 
+    unspecified operator()(AccumulatorSet const &, A1 const &, A2 const &, 
                            ...);
 };
-

Description

+

Description

+

Extracts the result associated with Feature from the specified accumulator_set.

-

-extractor public member functions

+

+extractor public member functions

  1. -
    template<typename Arg1> unspecified operator()(Arg1 const & arg1) const;
    +
    template<typename Arg1> unspecified operator()(Arg1 const & arg1) const;

    Extract the result associated with Feature from the accumulator set

  2. 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.

    -

    + 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:

-+
-- @@ -82,7 +83,7 @@
  • template<typename AccumulatorSet, typename A1, typename A2, ... > 
    -  unspecified operator()(AccumulatorSet const & acc, A1 const & a1, 
    +  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.

  • @@ -100,7 +101,7 @@

    a1

    Optional named parameter to be passed to the accumulator's result() function.


    -PrevUpHomeNext +PrevUpHomeNext
    -- cgit v1.2.3