std::independent_bits_engine::independent_bits_engine
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> independent_bits_engine(); |
(1) | (depuis C++11) |
template< class Sseq > explicit independent_bits_engine( Sseq& seq ); |
(2) | (depuis C++11) |
explicit independent_bits_engine( const Engine& e ); |
(3) | (depuis C++11) |
explicit independent_bits_engine( const Engine&& e ); |
(4) | (depuis C++11) |
Construit nouvel adaptateur de moteur pseudo-aléatoire .
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)
Constructeur par défaut. Le moteur sous-jacent est également construit par défaut .
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)
Construit le moteur sous-jacent avec
seq séquence de graines .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)
Construit le moteur sous-jacent avec une copie 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)
Déplacez-construit le moteur sous-jacent avec
e. e contient l'état non précisée, mais valide aprè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.
Paramètres
| seq | - | séquence de démarrage pour construire le moteur sous-jacent
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 | - | moteur de nombres pseudo-aléatoires pour initialiser avec
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. |