operator==,!=(std::independent_bits_engine)
Aus cppreference.com
< cpp | numeric | random | independent bits 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. |
template<class Engine, size_t w, class UIntType > bool operator==(const independent_bits_engine<Engine,w,UIntType>& lhs, | (1) | (seit C++11) |
template<class Engine, size_t w, class UIntType > bool operator==(const independent_bits_engine<Engine,w,UIntType>& lhs, | (2) | (seit C++11) |
Vergleicht zwei Pseudo-Zufallszahlen-Motor-Adapter. Zwei Motor-Adapter sind gleich, wenn ihre zugrunde liegenden Motoren gleich und deren innerer Zustand sind (wenn überhaupt) ist gleich, das heißt, wenn sie äquivalente Werte für eine beliebige Anzahl von Anrufen von operator() erzeugen würde .
Original:
Compares two pseudo-random number engine adaptors. Two engine adaptors are equal, if their underlying engines are equal and their internal state (if any) is equal, that is, if they would generate equivalent values for any number of calls of operator().
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]Parameter
lhs, rhs | - | Motor-Adapter zu vergleichen Original: engine adaptors to compare 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
1)
true wenn der Motor Adaptern gleichwertig sind, false sonst .
Original:
true if the engine adaptors are equivalent, false otherwise.
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)
true wenn der Motor-Adapter nicht gleichwertig sind, false sonst .
Original:
true if the engine adaptors are not equivalent, false otherwise.
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]Ausnahmen
(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.