libstdc++
|
Public Types | |
typedef _UIntType | result_type |
Public Member Functions | |
independent_bits_engine () | |
independent_bits_engine (const _RandomNumberEngine &__rne) | |
independent_bits_engine (_RandomNumberEngine &&__rne) | |
independent_bits_engine (result_type __s) | |
template<typename _Sseq , typename = typename std::enable_if<!std::is_same<_Sseq, independent_bits_engine>::value && !std::is_same<_Sseq, _RandomNumberEngine>::value> ::type> | |
independent_bits_engine (_Sseq &__q) | |
const _RandomNumberEngine & | base () const |
void | discard (unsigned long long __z) |
result_type | operator() () |
void | seed () |
void | seed (result_type __s) |
template<typename _Sseq > | |
void | seed (_Sseq &__q) |
Static Public Member Functions | |
static constexpr result_type | max () |
static constexpr result_type | min () |
Friends | |
bool | operator== (const independent_bits_engine &__lhs, const independent_bits_engine &__rhs) |
template<typename _CharT , typename _Traits > | |
std::basic_istream< _CharT, _Traits > & | operator>> (std::basic_istream< _CharT, _Traits > &__is, std::independent_bits_engine< _RandomNumberEngine, __w, _UIntType > &__x) |
Produces random numbers by combining random numbers from some base engine to produce random numbers with a specifies number of bits __w
.
typedef _UIntType std::independent_bits_engine< _RandomNumberEngine, __w, _UIntType >::result_type |
|
inline |
|
inlineexplicit |
|
inlineexplicit |
|
inlineexplicit |
|
inlineexplicit |
|
inline |
Gets a const reference to the underlying generator engine object.
Definition at line 1098 of file random.h.
Referenced by std::operator<<().
|
inline |
|
inlinestatic |
|
inlinestatic |
independent_bits_engine< _RandomNumberEngine, __w, _UIntType >::result_type std::independent_bits_engine< _RandomNumberEngine, __w, _UIntType >::operator() | ( | ) |
Gets the next value in the generated random number sequence.
Definition at line 729 of file random.tcc.
References std::log().
|
inline |
|
inline |
|
inline |
|
friend |
Compares two independent_bits_engine random number generator objects of the same type for equality.
__lhs | A independent_bits_engine random number generator object. |
__rhs | Another independent_bits_engine random number generator object. |
|
friend |
Extracts the current state of a % subtract_with_carry_engine random number generator engine __x
from the input stream __is
.
__is | An input stream. |
__x | A independent_bits_engine random number generator engine. |
__x
extracted or in an error state.