libstdc++
|
Classes | |
class | std::uniform_int_distribution< _IntType > |
class | std::uniform_real_distribution< _RealType > |
Functions | |
template<typename _IntType > | |
bool | std::operator!= (const std::uniform_int_distribution< _IntType > &__d1, const std::uniform_int_distribution< _IntType > &__d2) |
template<typename _IntType > | |
bool | std::operator!= (const std::uniform_real_distribution< _IntType > &__d1, const std::uniform_real_distribution< _IntType > &__d2) |
template<typename _IntType , typename _CharT , typename _Traits > | |
std::basic_ostream< _CharT, _Traits > & | std::operator<< (std::basic_ostream< _CharT, _Traits > &, const std::uniform_int_distribution< _IntType > &) |
template<typename _RealType , typename _CharT , typename _Traits > | |
std::basic_ostream< _CharT, _Traits > & | std::operator<< (std::basic_ostream< _CharT, _Traits > &, const std::uniform_real_distribution< _RealType > &) |
template<typename _IntType > | |
bool | std::operator== (const std::uniform_int_distribution< _IntType > &__d1, const std::uniform_int_distribution< _IntType > &__d2) |
template<typename _IntType > | |
bool | std::operator== (const std::uniform_real_distribution< _IntType > &__d1, const std::uniform_real_distribution< _IntType > &__d2) |
template<typename _IntType , typename _CharT , typename _Traits > | |
std::basic_istream< _CharT, _Traits > & | std::operator>> (std::basic_istream< _CharT, _Traits > &, std::uniform_int_distribution< _IntType > &) |
template<typename _RealType , typename _CharT , typename _Traits > | |
std::basic_istream< _CharT, _Traits > & | std::operator>> (std::basic_istream< _CharT, _Traits > &, std::uniform_real_distribution< _RealType > &) |
|
inline |
|
inline |
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
.
__os | An output stream. |
__x | A uniform_int_distribution random number distribution. |
__x
inserted or in an error state. Definition at line 902 of file random.tcc.
References std::ios_base::flags(), std::left(), and std::scientific().
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
.
__os | An output stream. |
__x | A uniform_real_distribution random number distribution. |
__x
inserted or in an error state. Definition at line 944 of file random.tcc.
References std::ios_base::flags(), std::left(), and std::scientific().
|
inline |
Return true if two uniform integer distributions have the same parameters.
Definition at line 1730 of file random.h.
References std::uniform_int_distribution< _IntType >::param().
|
inline |
Return true if two uniform real distributions have the same parameters.
Definition at line 1911 of file random.h.
References std::uniform_real_distribution< _RealType >::param().
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
.
__is | An input stream. |
__x | A uniform_int_distribution random number generator engine. |
__x
extracted or in an error state. Definition at line 923 of file random.tcc.
References std::dec(), std::ios_base::flags(), std::uniform_int_distribution< _IntType >::param(), and std::skipws().
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
.
__is | An input stream. |
__x | A uniform_real_distribution random number generator engine. |
__x
extracted or in an error state. Definition at line 968 of file random.tcc.
References std::ios_base::flags(), std::uniform_real_distribution< _RealType >::param(), and std::skipws().