std::discard_block - Online Linux Manual PageSection : 3
Updated : 19 Jun 2018
Source : libstdc++
NAMEstd::discard_block −
SYNOPSIS
Public Typestypedef _UniformRandomNumberGenerator base_type
typedef base_type::result_type result_type
Public Member Functionsconst base_type & base () const
template<class _Gen > discard_block (_Gen &__g)
discard_block (unsigned long __s)
discard_block (const base_type &__rng)
discard_block ()
result_type max () const
result_type min () const
result_type operator() ()
template<class _Gen > void seed (_Gen &__g)
void seed ()
Static Public Attributesstatic const int block_size
static const int used_block
Friendsbool operator!= (const discard_block &__lhs, const discard_block &__rhs)
template<class _UniformRandomNumberGenerator1 , int __p1, int __r1, typename _CharT , typename _Traits > std::basic_ostream< _CharT, _Traits > & operator<< (std::basic_ostream< _CharT, _Traits > &__os, const discard_block< _UniformRandomNumberGenerator1, __p1, __r1 > &__x)
bool operator== (const discard_block &__lhs, const discard_block &__rhs)
template<class _UniformRandomNumberGenerator1 , int __p1, int __r1, typename _CharT , typename _Traits > std::basic_istream< _CharT, _Traits > & operator>> (std::basic_istream< _CharT, _Traits > &__is, discard_block< _UniformRandomNumberGenerator1, __p1, __r1 > &__x)
Detailed Description
template<class _UniformRandomNumberGenerator, int __p, int __r> class std::discard_block< _UniformRandomNumberGenerator, __p, __r >Produces random numbers from some base engine by discarding blocks of data. 0 <= __r <= __p Definition at line 1078 of file tr1_impl/random.
Member Typedef Documentation
template<class _UniformRandomNumberGenerator, int __p, int __r> typedef _UniformRandomNumberGenerator std::discard_block< _UniformRandomNumberGenerator, __p, __r >::base_type The type of the underlying generator engine.Definition at line 1085 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> typedef base_type::result_type std::discard_block< _UniformRandomNumberGenerator, __p, __r >::result_type The type of the generated random value.Definition at line 1087 of file tr1_impl/random.
Constructor & Destructor Documentation
template<class _UniformRandomNumberGenerator, int __p, int __r> std::discard_block< _UniformRandomNumberGenerator, __p, __r >::discard_block () [inline] Constructs a default discard_block engine.The underlying engine is default constructed as well. Definition at line 1098 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> std::discard_block< _UniformRandomNumberGenerator, __p, __r >::discard_block (const base_type & __rng) [inline, explicit] Copy constructs a discard_block engine.Copies an existing base class random number generator. Parameters: rng An existing (base class) engine object. Definition at line 1108 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> std::discard_block< _UniformRandomNumberGenerator, __p, __r >::discard_block (unsigned long __s) [inline, explicit] Seed constructs a discard_block engine.Constructs the underlying generator engine seeded with __s. Parameters: __s A seed value for the base class engine. Definition at line 1118 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> template<class _Gen > std::discard_block< _UniformRandomNumberGenerator, __p, __r >::discard_block (_Gen & __g) [inline] Generator construct a discard_block engine.Parameters: __g A seed generator function. Definition at line 1127 of file tr1_impl/random.
Member Function Documentation
template<class _UniformRandomNumberGenerator, int __p, int __r> const base_type& std::discard_block< _UniformRandomNumberGenerator, __p, __r >::base () const [inline] Gets a const reference to the underlying generator engine object.Definition at line 1156 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> result_type std::discard_block< _UniformRandomNumberGenerator, __p, __r >::max () const [inline] Gets the maximum value in the generated random number range.Definition at line 1170 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> result_type std::discard_block< _UniformRandomNumberGenerator, __p, __r >::min () const [inline] Gets the minimum value in the generated random number range.Definition at line 1163 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator , int __p, int __r> discard_block< _UniformRandomNumberGenerator, __p, __r >::result_type std::discard_block< _UniformRandomNumberGenerator, __p, __r >::operator() () [inline] Gets the next value in the generated random number sequence.Definition at line 583 of file random.tcc.
template<class _UniformRandomNumberGenerator, int __p, int __r> template<class _Gen > void std::discard_block< _UniformRandomNumberGenerator, __p, __r >::seed (_Gen & __g) [inline] Reseeds the discard_block object with the given seed generator function.Parameters: __g A seed generator function. Definition at line 1146 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> void std::discard_block< _UniformRandomNumberGenerator, __p, __r >::seed () [inline] Reseeds the discard_block object with the default seed for the underlying base class generator engine.Definition at line 1134 of file tr1_impl/random.
Friends And Related Function Documentation
template<class _UniformRandomNumberGenerator, int __p, int __r> bool operator!= (const discard_block< _UniformRandomNumberGenerator, __p, __r > & __lhs, const discard_block< _UniformRandomNumberGenerator, __p, __r > & __rhs) [friend] Compares two discard_block random number generator objects of the same type for inequality.Parameters: __lhs A discard_block random number generator object.
__rhs Another discard_block random number generator object. Returns: true if the two objects are not equal, false otherwise. Definition at line 1204 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> template<class _UniformRandomNumberGenerator1 , int __p1, int __r1, typename _CharT , typename _Traits > std::basic_ostream<_CharT, _Traits>& operator<< (std::basic_ostream< _CharT, _Traits > & __os, const discard_block< _UniformRandomNumberGenerator1, __p1, __r1 > & __x) [friend] Inserts the current state of a discard_block random number generator engine __x into the output stream __os.Parameters: __os An output stream.
__x A discard_block random number generator engine. Returns: The output stream with the state of __x inserted or in an error state.
template<class _UniformRandomNumberGenerator, int __p, int __r> bool operator== (const discard_block< _UniformRandomNumberGenerator, __p, __r > & __lhs, const discard_block< _UniformRandomNumberGenerator, __p, __r > & __rhs) [friend] Compares two discard_block random number generator objects of the same type for equality.Parameters: __lhs A discard_block random number generator object.
__rhs Another discard_block random number generator object. Returns: true if the two objects are equal, false otherwise. Definition at line 1190 of file tr1_impl/random.
template<class _UniformRandomNumberGenerator, int __p, int __r> template<class _UniformRandomNumberGenerator1 , int __p1, int __r1, typename _CharT , typename _Traits > std::basic_istream<_CharT, _Traits>& operator>> (std::basic_istream< _CharT, _Traits > & __is, discard_block< _UniformRandomNumberGenerator1, __p1, __r1 > & __x) [friend] Extracts the current state of a % subtract_with_carry random number generator engine __x from the input stream __is.Parameters: __is An input stream.
__x A discard_block random number generator engine. Returns: The input stream with the state of __x extracted or in an error state.
AuthorGenerated automatically by Doxygen for libstdc++ from the source code. 0
Johanes Gumabo
Data Size : 39,381 byte
man-std::discard_block.3Build : 2024-12-05, 20:55 :
Visitor Screen : x
Visitor Counter ( page / site ) : 4 / 203,502
Visitor ID : :
Visitor IP : 3.144.41.252 :
Visitor Provider : AMAZON-02 :
Provider Position ( lat x lon ) : 39.962500 x -83.006100 : x
Provider Accuracy Radius ( km ) : 1000 :
Provider City : Columbus :
Provider Province : Ohio , : ,
Provider Country : United States :
Provider Continent : North America :
Visitor Recorder : Version :
Visitor Recorder : Library :
Online Linux Manual Page : Version : Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page : Library : lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page : Library : lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base : Version : Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base : Library : lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36
Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.