<div class="t-tr-text">C + +: concetti<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">C++ concepts:</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div> SeedSequence
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
seed sequence A è un oggetto che produce valori interi senza segno i nell'intervallo 0 ≤ i < 232basa su una serie di dati consumati interi.
seed sequence is an object that produces unsigned integer values i in the range 0 ≤ i < 232based on a consumed range of integer data.
You can help to correct and verify the translation. Click here for instructions.
Requisiti
Sè un SeedSequence.Original:Sis a SeedSequence.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.qè un oggetto diSerè un oggetto potenzialmente costante diS.Original:qis an object ofSandris a potentially constant object ofS.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.Tis theresult_type.ib,iesonoInputIterators convalue_typedi valori interi senza segno di almeno 32 bit.Original:The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.ilis anstd::initializer_list<T>.rb,reRandomAccessIterators sono modificabili con unvalue_typedi valori interi senza segno di almeno 32 bit.Original:rb,reare modifiableRandomAccessIterators with avalue_typeof unsigned integer values of at least 32 bits.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.obis anOutputIterator.
| Expression | Type | Notes | Complexity |
|---|---|---|---|
S::result_type |
T |
Unsigned integer of at least 32 bits | compile-time |
S() |
Creates a seed sequence with the same default values as other objects of type S |
constant | |
S(ib,ie) |
Creates a seed sequence based on the supplied input bits by [ib,ie) |
O(ie-ib) | |
S(il) |
The same as S(il.begin(), il.end()) |
||
q.generate(rb,re) |
void |
Fills [rb,re) with 32-bit quantities depending on the initial supplied values and potential previous calls to generate. If it does nothing. |
O(re-rb) |
r.size() |
size_t |
The amount of 32-bit integers copied by param. |
constant |
r.param(ob) |
void |
Copies 32-bit values to ob that would reproduce the current state of the object if passed to a constructor of S. |
O(r.size()) |
Vedi anche
- std::seed_seq