operator==,!=(std::shuffle_order_engine)
De cppreference.com
< cpp | numeric | random | shuffle order 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 p, size_t r > bool operator==( const shuffle_order_engine<Engine,p,r>& lhs, |
(1) | (depuis C++11) |
template< class Engine, size_t p, size_t r > bool operator==( const shuffle_order_engine<Engine,p,r>& lhs, |
(2) | (depuis C++11) |
Compare deux pseudo-aléatoires adaptateurs de moteurs numériques. Deux adaptateurs de moteur sont égaux, si leurs moteurs sous-jacents sont égaux et leur état interne (le cas échéant) est égal, c'est à dire si elles génèrent des valeurs équivalentes pour n'importe quel nombre d'appels de operator() .
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.
[modifier] Paramètres
lhs, rhs | - | adaptateurs de moteurs à comparer
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. |
[modifier] Retourne la valeur
1)
true si les adaptateurs de moteurs sont équivalents, false autrement .
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 si les adaptateurs de moteur ne sont pas équivalentes, false autrement .
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.
[modifier] Exceptions
(Aucun)
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.