diff --git a/doc/test/array1.xml b/doc/test/array1.xml index 54cb3a6ef5..253938bcff 100644 --- a/doc/test/array1.xml +++ b/doc/test/array1.xml @@ -54,9 +54,7 @@ - - const array<U, N>& - + const array<U, N>& @@ -291,9 +289,7 @@ void - - array<T, N>& - + array<T, N>& @@ -340,14 +336,10 @@ void - - array<T, N>& - + array<T, N>& - - array<T, N>& - + array<T, N>& @@ -375,14 +367,10 @@ bool - - const array<T, N>& - + const array<T, N>& - - const array<T, N>& - + const array<T, N>& @@ -405,14 +393,10 @@ bool - - const array<T, N>& - + const array<T, N>& - - const array<T, N>& - + const array<T, N>& @@ -433,14 +417,10 @@ bool - - const array<T, N>& - + const array<T, N>& - - const array<T, N>& - + const array<T, N>& @@ -463,14 +443,10 @@ bool - - const array<T, N>& - + const array<T, N>& - - const array<T, N>& - + const array<T, N>& @@ -491,14 +467,10 @@ bool - - const array<T, N>& - + const array<T, N>& - - const array<T, N>& - + const array<T, N>& @@ -519,14 +491,10 @@ bool - - const array<T, N>& - + const array<T, N>& - - const array<T, N>& - + const array<T, N>& diff --git a/doc/test/gold/boost/accumulators/extract/weighted_tail_quantile.html b/doc/test/gold/boost/accumulators/extract/weighted_tail_quantile.html index 139e2c298b..94c4c42d1c 100644 --- a/doc/test/gold/boost/accumulators/extract/weighted_tail_quantile.html +++ b/doc/test/gold/boost/accumulators/extract/weighted_tail_quantile.html @@ -7,7 +7,7 @@ - + @@ -20,7 +20,7 @@

-PrevUpHomeNext +PrevUpHomeNext
@@ -44,7 +44,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/test/gold/boost/accumulators/impl/weighted_tail_quantile__id330297.html b/doc/test/gold/boost/accumulators/impl/weighted_tail_quantile__id330053.html similarity index 86% rename from doc/test/gold/boost/accumulators/impl/weighted_tail_quantile__id330297.html rename to doc/test/gold/boost/accumulators/impl/weighted_tail_quantile__id330053.html index b60b7ffb27..755abcb8eb 100644 --- a/doc/test/gold/boost/accumulators/impl/weighted_tail_quantile__id330297.html +++ b/doc/test/gold/boost/accumulators/impl/weighted_tail_quantile__id330053.html @@ -23,7 +23,7 @@ PrevUpHomeNext
-
+

Struct template weighted_tail_quantile_impl

boost::accumulators::impl::weighted_tail_quantile_impl — Tail quantile estimation based on order statistics of weighted samples (for both left and right tails).

@@ -32,28 +32,28 @@
// In header: <doc/test/weighted_tail_quantile.hpp>
 
 template<typename Sample, typename Weight, typename LeftRight> 
-struct weighted_tail_quantile_impl {
+struct weighted_tail_quantile_impl {
   // types
-  typedef numeric::functional::average< Weight, std::size_t >::result_type float_type; 
-  typedef Sample                                                           result_type;
+  typedef numeric::functional::average< Weight, std::size_t >::result_type float_type; 
+  typedef Sample                                                           result_type;
 
-  // construct/copy/destruct
-  weighted_tail_quantile_impl(dont_care);
+  // construct/copy/destruct
+  weighted_tail_quantile_impl(dont_care);
 
-  // public member functions
-  template<typename Args> result_type result(Args const &) const;
+  // public member functions
+  template<typename Args> result_type result(Args const &) const;
 };
-

Description

+

Description

An estimator of tail quantiles with level based on order statistics of weighted samples are given by (left tail) and (right tail), where

-

Equation 1. 

+

Equation 1. 


and

-

Equation 2. 

+

Equation 2. 


@@ -61,16 +61,16 @@

-

-weighted_tail_quantile_impl +

+weighted_tail_quantile_impl public construct/copy/destruct

-
  1. weighted_tail_quantile_impl(dont_care);
+
  1. weighted_tail_quantile_impl(dont_care);
-

-weighted_tail_quantile_impl public member functions

-
  1. template<typename Args> result_type result(Args const & args) const;
+

+weighted_tail_quantile_impl public member functions

+
  1. template<typename Args> result_type result(Args const & args) const;
diff --git a/doc/test/gold/boost/accumulators/tag/weighted_tail_quantile.html b/doc/test/gold/boost/accumulators/tag/weighted_tail_quantile.html index 4e68d38485..07d6e6a75e 100644 --- a/doc/test/gold/boost/accumulators/tag/weighted_tail_quantile.html +++ b/doc/test/gold/boost/accumulators/tag/weighted_tail_quantile.html @@ -6,7 +6,7 @@ - + @@ -19,7 +19,7 @@

-PrevUpHome +PrevUpHome
@@ -46,7 +46,7 @@
-PrevUpHome +PrevUpHome
diff --git a/doc/test/gold/boost/array.html b/doc/test/gold/boost/array.html index daac06cdc7..2e54887fb0 100644 --- a/doc/test/gold/boost/array.html +++ b/doc/test/gold/boost/array.html @@ -53,119 +53,75 @@ static const size_type static_size = N; // construct/copy/destruct - template<typename U> - array& operator=( - const array<U, N>& - ); + template<typename U> array& operator=(const array<U, N>&); - // iterator support - iterator begin(); - const_iterator begin() const; - iterator end(); - const_iterator end() const; + // iterator support + iterator begin(); + const_iterator begin() const; + iterator end(); + const_iterator end() const; - // reverse iterator support - reverse_iterator rbegin(); - const_reverse_iterator rbegin() const; - reverse_iterator rend(); - const_reverse_iterator rend() const; + // reverse iterator support + reverse_iterator rbegin(); + const_reverse_iterator rbegin() const; + reverse_iterator rend(); + const_reverse_iterator rend() const; - // capacity - size_type size(); - bool empty(); - size_type max_size(); + // capacity + size_type size(); + bool empty(); + size_type max_size(); - // element access - reference operator[](size_type); - const_reference operator[](size_type) const; - reference at(size_type); - const_reference at(size_type) const; - reference front(); - const_reference front() const; - reference back(); - const_reference back() const; - const T* data() const; - T* c_array(); + // element access + reference operator[](size_type); + const_reference operator[](size_type) const; + reference at(size_type); + const_reference at(size_type) const; + reference front(); + const_reference front() const; + reference back(); + const_reference back() const; + const T* data() const; + T* c_array(); - // modifiers - void swap( - array<T, N>& - ); - void assign(const T&); + // modifiers + void swap(array<T, N>&); + void assign(const T&); T elems[N]; }; -// specialized algorithms -template<typename T, std::size_t N> - void swap( - array<T, N>& - , - - array<T, N>& - ); +// specialized algorithms +template<typename T, std::size_t N> void swap(array<T, N>&, array<T, N>&); -// comparisons +// comparisons template<typename T, std::size_t N> - bool operator==( - const array<T, N>& - , - - const array<T, N>& - ); + bool operator==(const array<T, N>&, const array<T, N>&); template<typename T, std::size_t N> - bool operator!=( - const array<T, N>& - , - - const array<T, N>& - ); + bool operator!=(const array<T, N>&, const array<T, N>&); template<typename T, std::size_t N> - bool operator<( - const array<T, N>& - , - - const array<T, N>& - ); + bool operator<(const array<T, N>&, const array<T, N>&); template<typename T, std::size_t N> - bool operator>( - const array<T, N>& - , - - const array<T, N>& - ); + bool operator>(const array<T, N>&, const array<T, N>&); template<typename T, std::size_t N> - bool operator<=( - const array<T, N>& - , - - const array<T, N>& - ); + bool operator<=(const array<T, N>&, const array<T, N>&); template<typename T, std::size_t N> - bool operator>=( - const array<T, N>& - , - - const array<T, N>& - );
+ bool operator>=(const array<T, N>&, const array<T, N>&);
-

Description

+

Description

-

+

array public construct/copy/destruct

  1. -
    template<typename U> 
    -  array& operator=(
    -                     const array<U, N>&
    -                   other);
    +
    template<typename U> array& operator=(const array<U, N>& other);
    @@ -173,12 +129,12 @@
    -

    -array iterator support

    +

    +array iterator support

    1. -
      iterator begin();
      -const_iterator begin() const;
      +
      iterator begin();
      +const_iterator begin() const;

    Effects:

    - std::copy(rhs.begin(),rhs.end(), begin()) + std::copy(rhs.begin(),rhs.end(), begin())
    @@ -194,8 +150,8 @@
  2. -
    iterator end();
    -const_iterator end() const;
    +
    iterator end();
    +const_iterator end() const;
    @@ -213,12 +169,12 @@
    -

    -array reverse iterator support

    +

    +array reverse iterator support

    1. -
      reverse_iterator rbegin();
      -const_reverse_iterator rbegin() const;
      +
      reverse_iterator rbegin();
      +const_reverse_iterator rbegin() const;
    @@ -228,8 +184,8 @@
  3. -
    reverse_iterator rend();
    -const_reverse_iterator rend() const;
    +
    reverse_iterator rend();
    +const_reverse_iterator rend() const;
    @@ -241,11 +197,11 @@
    -

    -array capacity

    +

    +array capacity

    1. -
      size_type size();
      +
      size_type size();
    @@ -257,7 +213,7 @@
  4. -
    bool empty();
    +
    bool empty();
    @@ -275,7 +231,7 @@
  5. -
    size_type max_size();
    +
    size_type max_size();
    @@ -295,12 +251,12 @@
    -

    -array element access

    +

    +array element access

    1. -
      reference operator[](size_type i);
      -const_reference operator[](size_type i) const;
      +
      reference operator[](size_type i);
      +const_reference operator[](size_type i) const;
    @@ -324,8 +280,8 @@
  6. -
    reference at(size_type i);
    -const_reference at(size_type i) const;
    +
    reference at(size_type i);
    +const_reference at(size_type i) const;
    @@ -347,8 +303,8 @@
  7. -
    reference front();
    -const_reference front() const;
    +
    reference front();
    +const_reference front() const;
    @@ -370,8 +326,8 @@
  8. -
    reference back();
    -const_reference back() const;
    +
    reference back();
    +const_reference back() const;
    @@ -393,7 +349,7 @@
  9. -
    const T* data() const;
    +
    const T* data() const;
    @@ -411,7 +367,7 @@
  10. -
    T* c_array();
    +
    T* c_array();
    @@ -431,13 +387,11 @@
    -

    -array modifiers

    +

    +array modifiers

    1. -
      void swap(
      -                        array<T, N>&
      -                      other);
      +
      void swap(array<T, N>& other);
    @@ -445,7 +399,7 @@ @@ -459,14 +413,14 @@

    Effects:

    - std::swap_ranges(begin(), end(), other.begin()) + std::swap_ranges(begin(), end(), other.begin())
  11. -
    void assign(const T& value);
    +
    void assign(const T& value);
    @@ -475,16 +429,10 @@
    -

    -array specialized algorithms

    +

    +array specialized algorithms

    1. -
      template<typename T, std::size_t N> 
      -  void swap(
      -                        array<T, N>&
      -                      x, 
      -            
      -                        array<T, N>&
      -                      y);
      +
      template<typename T, std::size_t N> void swap(array<T, N>& x, array<T, N>& y);

    Effects:

    - std::fill_n(begin(), N, value) + std::fill_n(begin(), N, value)
    @@ -492,7 +440,7 @@ @@ -505,24 +453,19 @@
    -

    -array comparisons

    +

    +array comparisons

    1. template<typename T, std::size_t N> 
      -  bool operator==(
      -                        const array<T, N>&
      -                      x, 
      -                  
      -                        const array<T, N>&
      -                      y);
      + bool operator==(const array<T, N>& x, const array<T, N>& y);

    Effects:

    - x.swap(y) + x.swap(y)
    @@ -530,12 +473,7 @@
  12. template<typename T, std::size_t N> 
    -  bool operator!=(
    -                        const array<T, N>&
    -                      x, 
    -                  
    -                        const array<T, N>&
    -                      y);
    + bool operator!=(const array<T, N>& x, const array<T, N>& y);
  13. Returns:

    - std::equal(x.begin(), x.end(), y.begin()) + std::equal(x.begin(), x.end(), y.begin())
    @@ -548,19 +486,14 @@
  14. template<typename T, std::size_t N> 
    -  bool operator<(
    -                        const array<T, N>&
    -                      x, 
    -                 
    -                        const array<T, N>&
    -                      y);
    + bool operator<(const array<T, N>& x, const array<T, N>& y);
  15. @@ -568,12 +501,7 @@
  16. template<typename T, std::size_t N> 
    -  bool operator>(
    -                        const array<T, N>&
    -                      x, 
    -                 
    -                        const array<T, N>&
    -                      y);
    + bool operator>(const array<T, N>& x, const array<T, N>& y);
  17. Returns:

    - std::lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()) + std::lexicographical_compare(x.begin(), x.end(), y.begin(), y.end())
    @@ -586,12 +514,7 @@
  18. template<typename T, std::size_t N> 
    -  bool operator<=(
    -                        const array<T, N>&
    -                      x, 
    -                  
    -                        const array<T, N>&
    -                      y);
    + bool operator<=(const array<T, N>& x, const array<T, N>& y);
  19. @@ -604,12 +527,7 @@
  20. template<typename T, std::size_t N> 
    -  bool operator>=(
    -                        const array<T, N>&
    -                      x, 
    -                  
    -                        const array<T, N>&
    -                      y);
    + bool operator>=(const array<T, N>& x, const array<T, N>& y);
  21. diff --git a/doc/test/gold/document_to_test_formatting/accumulators.html b/doc/test/gold/document_to_test_formatting/accumulators.html index 599ae6c515..b05c11bfec 100644 --- a/doc/test/gold/document_to_test_formatting/accumulators.html +++ b/doc/test/gold/document_to_test_formatting/accumulators.html @@ -42,7 +42,7 @@ }namespaceimpl{template<typename Sample,typename Weight,typename LeftRight> - structweighted_tail_quantile_impl; + structweighted_tail_quantile_impl;}namespacetag{template<typename LeftRight>structweighted_tail_quantile; diff --git a/doc/test/gold/document_to_test_formatting/array.html b/doc/test/gold/document_to_test_formatting/array.html index 32a5b28a61..b49a79825f 100644 --- a/doc/test/gold/document_to_test_formatting/array.html +++ b/doc/test/gold/document_to_test_formatting/array.html @@ -29,7 +29,7 @@
    Introduction
    -
    Reference
    +
    Reference
    Design Rationale
    For more information...
    Acknowledgements
    @@ -76,7 +76,7 @@
  22. swap() has no constant complexity.
  23. -size() is always constant, based on the second template argument of the type.
  24. +size() is always constant, based on the second template argument of the type.
  25. The container provides no allocator support.
  26. @@ -85,71 +85,35 @@

    -Reference

    +Reference

    Header <boost/array.hpp>

    namespace boost {
       template<typename T, std::size_t N> class array;
    +  template<typename T, std::size_t N> void swap(array<T, N>&, array<T, N>&);
       template<typename T, std::size_t N> 
    -    void swap(
    -                        array<T, N>&
    -                     , 
    -              
    -                        array<T, N>&
    -                     );
    +    bool operator==(const array<T, N>&, const array<T, N>&);
       template<typename T, std::size_t N> 
    -    bool operator==(
    -                        const array<T, N>&
    -                     , 
    -                    
    -                        const array<T, N>&
    -                     );
    +    bool operator!=(const array<T, N>&, const array<T, N>&);
       template<typename T, std::size_t N> 
    -    bool operator!=(
    -                        const array<T, N>&
    -                     , 
    -                    
    -                        const array<T, N>&
    -                     );
    +    bool operator<(const array<T, N>&, const array<T, N>&);
       template<typename T, std::size_t N> 
    -    bool operator<(
    -                        const array<T, N>&
    -                     , 
    -                   
    -                        const array<T, N>&
    -                     );
    +    bool operator>(const array<T, N>&, const array<T, N>&);
       template<typename T, std::size_t N> 
    -    bool operator>(
    -                        const array<T, N>&
    -                     , 
    -                   
    -                        const array<T, N>&
    -                     );
    +    bool operator<=(const array<T, N>&, const array<T, N>&);
       template<typename T, std::size_t N> 
    -    bool operator<=(
    -                        const array<T, N>&
    -                     , 
    -                    
    -                        const array<T, N>&
    -                     );
    -  template<typename T, std::size_t N> 
    -    bool operator>=(
    -                        const array<T, N>&
    -                     , 
    -                    
    -                        const array<T, N>&
    -                     );
    +    bool operator>=(const array<T, N>&, const array<T, N>&);
     }
    diff --git a/doc/test/gold/index.html b/doc/test/gold/index.html index 166158e8cc..19d2738ad9 100644 --- a/doc/test/gold/index.html +++ b/doc/test/gold/index.html @@ -106,7 +106,7 @@ XML Documentation
    Introduction
    -
    Reference
    +
    Reference
    Design Rationale
    For more information...
    Acknowledgements