std::linear_congruential_engine::discard
Aus cppreference.com
< cpp | numeric | random | linear congruential engine
![]() |
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. |
void discard( unsigned long long z ); |
(seit C++11) | |
Advances den internen Zustand von
z
Zeiten. Gleichbedeutend mit dem Aufruf operator()
z
Zeiten und Verwerfen Sie das ErgebnisOriginal:
Advances the internal state by
z
times. Equivalent to calling operator()
z
times and discarding the resultThe 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.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
z | - | Integer-Wert, der die Anzahl der Male, um den Zustand zu verbessern, indem
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. |
[Bearbeiten] Rückgabewert
(None)
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.
[Bearbeiten] Komplexität
This section is incomplete |
[Bearbeiten] Siehe auch
aktualisiert den Zustand des Generators und gibt den generierten Wert zurück (öffentliche Elementfunktion) |