std::discard_block_engine::discard_block_engine
De cppreference.com
< cpp | numeric | random | discard block engine
![]() |
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
discard_block_engine(); |
(1) | (desde C++11) |
template< class Sseq > explicit discard_block_engine( Sseq& seq ); |
(2) | (desde C++11) |
explicit discard_block_engine( const Engine& e ); |
(3) | (desde C++11) |
explicit discard_block_engine( const Engine&& e ); |
(4) | (desde C++11) |
Construye nueva pseudo-aleatorio adaptador del motor .
Original:
Constructs new pseudo-random engine adaptor.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Por defecto constructor. El motor subyacente también default-construido .
Original:
Default constructor. The underlying engine is also default-constructed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Construye el motor subyacente con
seq
semilla secuencia .Original:
Constructs the underlying engine with seed sequence
seq
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
Construye el motor subyacente con una copia de
e
.Original:
Constructs the underlying engine with a copy of
e
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
4)
Mover-construye el motor subyacente con
e
. e
mantiene un estado indeterminado, pero válido después .Original:
Move-constructs the underlying engine with
e
. e
holds unspecified, but valid state afterwards.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Parámetros
seq | - | secuencia de semillas para construir el motor subyacente con
Original: seed sequence to construct the underlying engine with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
e | - | pseudo-aleatorio motor número inicializar con
Original: pseudo-random number engine to initialize with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |