libstdc++
Uniform Distributions
Collaboration diagram for Uniform Distributions:

Classes

Functions


Function Documentation

template<typename _IntType >
bool std::operator!= ( const std::uniform_int_distribution< _IntType > &  __d1,
const std::uniform_int_distribution< _IntType > &  __d2 
) [inline]

Return true if two uniform integer distributions have different parameters.

Definition at line 1735 of file random.h.

template<typename _IntType >
bool std::operator!= ( const std::uniform_real_distribution< _IntType > &  __d1,
const std::uniform_real_distribution< _IntType > &  __d2 
) [inline]

Return true if two uniform real distributions have different parameters.

Definition at line 1916 of file random.h.

template<typename _IntType , typename _CharT , typename _Traits >
std::basic_ostream< _CharT, _Traits > & std::operator<< ( std::basic_ostream< _CharT, _Traits > &  __os,
const std::uniform_int_distribution< _IntType > &  __x 
)

Inserts a uniform_int_distribution random number distribution __x into the output stream os.

Parameters:
__osAn output stream.
__xA uniform_int_distribution random number distribution.
Returns:
The output stream with the state of __x inserted or in an error state.

Definition at line 900 of file random.tcc.

References std::ios_base::flags(), std::scientific(), and std::left().

template<typename _RealType , typename _CharT , typename _Traits >
std::basic_ostream< _CharT, _Traits > & std::operator<< ( std::basic_ostream< _CharT, _Traits > &  __os,
const std::uniform_real_distribution< _RealType > &  __x 
)

Inserts a uniform_real_distribution random number distribution __x into the output stream __os.

Parameters:
__osAn output stream.
__xA uniform_real_distribution random number distribution.
Returns:
The output stream with the state of __x inserted or in an error state.

Definition at line 942 of file random.tcc.

References std::ios_base::flags(), std::scientific(), and std::left().

template<typename _IntType >
bool std::operator== ( const std::uniform_int_distribution< _IntType > &  __d1,
const std::uniform_int_distribution< _IntType > &  __d2 
) [inline]

Return true if two uniform integer distributions have the same parameters.

Definition at line 1725 of file random.h.

References std::uniform_int_distribution::param().

template<typename _IntType >
bool std::operator== ( const std::uniform_real_distribution< _IntType > &  __d1,
const std::uniform_real_distribution< _IntType > &  __d2 
) [inline]

Return true if two uniform real distributions have the same parameters.

Definition at line 1906 of file random.h.

References std::uniform_real_distribution::param().

template<typename _IntType , typename _CharT , typename _Traits >
std::basic_istream< _CharT, _Traits > & std::operator>> ( std::basic_istream< _CharT, _Traits > &  __is,
std::uniform_int_distribution< _IntType > &  __x 
)

Extracts a uniform_int_distribution random number distribution __x from the input stream __is.

Parameters:
__isAn input stream.
__xA uniform_int_distribution random number generator engine.
Returns:
The input stream with __x extracted or in an error state.

Definition at line 921 of file random.tcc.

References std::dec(), std::skipws(), and std::uniform_int_distribution::param().

template<typename _RealType , typename _CharT , typename _Traits >
std::basic_istream< _CharT, _Traits > & std::operator>> ( std::basic_istream< _CharT, _Traits > &  __is,
std::uniform_real_distribution< _RealType > &  __x 
)

Extracts a uniform_real_distribution random number distribution __x from the input stream __is.

Parameters:
__isAn input stream.
__xA uniform_real_distribution random number generator engine.
Returns:
The input stream with __x extracted or in an error state.

Definition at line 966 of file random.tcc.

References std::skipws(), and std::uniform_real_distribution::param().