From 34bd32e225e2a8a94104489b31c42e5801cc1f4a Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:05:34 +0900 Subject: Imported Upstream version 1.63.0 Change-Id: Iac85556a04b7e58d63ba636dedb0986e3555714a Signed-off-by: DongHun Kwak --- .../random/gamma_distribution/param_type.html | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) (limited to 'doc/html/boost/random/gamma_distribution') diff --git a/doc/html/boost/random/gamma_distribution/param_type.html b/doc/html/boost/random/gamma_distribution/param_type.html index 9813645ee0..000e76142e 100644 --- a/doc/html/boost/random/gamma_distribution/param_type.html +++ b/doc/html/boost/random/gamma_distribution/param_type.html @@ -6,7 +6,7 @@ - + @@ -21,7 +21,7 @@
-PrevUpHomeNext +PrevUpHomeNext
@@ -40,72 +40,72 @@ typedef gamma_distribution distribution_type; // construct/copy/destruct - param_type(const RealType & = 1.0, const RealType & = 1.0); + param_type(const RealType & = 1.0, const RealType & = 1.0); - // public member functions - RealType alpha() const; - RealType beta() const; + // public member functions + RealType alpha() const; + RealType beta() const; - // friend functions + // friend functions template<typename CharT, typename Traits> friend std::basic_ostream< CharT, Traits > & - operator<<(std::basic_ostream< CharT, Traits > &, const param_type &); + operator<<(std::basic_ostream< CharT, Traits > &, const param_type &); template<typename CharT, typename Traits> friend std::basic_istream< CharT, Traits > & - operator>>(std::basic_istream< CharT, Traits > &, param_type &); - friend bool operator==(const param_type &, const param_type &); - friend bool operator!=(const param_type &, const param_type &); + operator>>(std::basic_istream< CharT, Traits > &, param_type &); + friend bool operator==(const param_type &, const param_type &); + friend bool operator!=(const param_type &, const param_type &); };
-

Description

+

Description

-

+

param_type public construct/copy/destruct

  1. -
    param_type(const RealType & alpha = 1.0, const RealType & beta = 1.0);
    +
    param_type(const RealType & alpha = 1.0, const RealType & beta = 1.0);

    Constructs a param_type object from the "alpha" and "beta" parameters.

    Requires: alpha > 0 && beta > 0

-

-param_type public member functions

+

+param_type public member functions

  1. -
    RealType alpha() const;
    +
    RealType alpha() const;

    Returns the "alpha" parameter of the distribution.

  2. -
    RealType beta() const;
    +
    RealType beta() const;

    Returns the "beta" parameter of the distribution.

-

-param_type friend functions

+

+param_type friend functions

  1. template<typename CharT, typename Traits> 
       friend std::basic_ostream< CharT, Traits > & 
    -  operator<<(std::basic_ostream< CharT, Traits > & os, 
    +  operator<<(std::basic_ostream< CharT, Traits > & os, 
                  const param_type & param);

    Writes the parameters to a std::ostream.

  2. template<typename CharT, typename Traits> 
       friend std::basic_istream< CharT, Traits > & 
    -  operator>>(std::basic_istream< CharT, Traits > & is, param_type & param);
    + operator>>(std::basic_istream< CharT, Traits > & is, param_type & param);

    Reads the parameters from a std::istream.

  3. -
    friend bool operator==(const param_type & lhs, const param_type & rhs);
    +
    friend bool operator==(const param_type & lhs, const param_type & rhs);

    Returns true if the two sets of parameters are the same.

  4. -
    friend bool operator!=(const param_type & lhs, const param_type & rhs);
    +
    friend bool operator!=(const param_type & lhs, const param_type & rhs);

    Returns true if the two sets fo parameters are different.

@@ -122,7 +122,7 @@
-PrevUpHomeNext +PrevUpHomeNext
-- cgit v1.2.3