std::independent_bits_engine::discard
Da cppreference.com.
< cpp | numeric | random | independent bits engine
![]() | 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. |
void discard(unsignedlonglong z ); | (dal C++11) | |
Anticipi lo stato interno di volte
z
. Equivalente a chiamare operator()
z
volte e scartando il risultato. Lo stato del motore sottostante può essere avanzata da più di volte z
.Original:
Advances the internal state by
z
times. Equivalent to calling operator()
z
times and discarding the result. The state of the underlying engine may be advanced by more than z
times.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.
Indice |
[modifica]Parametri
z | - | valore intero che specifica il numero di volte per migliorare lo stato di Original: integer value specifying the number of times to advance the state by The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica]Valore di ritorno
(Nessuno)
Original:
(none)
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.
[modifica]Eccezioni
(Nessuno)
Original:
(none)
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.
[modifica]Vedi anche
avanza lo stato del motore sottostante e restituisce il valore generato Original: advances the state of the underlying engine and returns the generated value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |