operator==,!=(std::shuffle_order_engine)
Da cppreference.com.
< cpp | numeric | random | shuffle order 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. |
template< class Engine, size_t p, size_t r > bool operator==( const shuffle_order_engine<Engine,p,r>& lhs, |
(1) | (dal C++11) |
template< class Engine, size_t p, size_t r > bool operator==( const shuffle_order_engine<Engine,p,r>& lhs, |
(2) | (dal C++11) |
Confronta due pseudo-casuali adattatori motore numero. Due adattatori motore sono uguali, se i loro motori sottostanti sono uguali e il loro stato interno (se presente) è uguale, cioè se essi generano valori equivalenti per qualsiasi numero di chiamate di 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.
[modifica] Parametri
lhs, rhs | - | adattatori motore da confrontare
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. |
[modifica] Valore di ritorno
1)
true se le schede del motore sono equivalenti, in caso contrario false.
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 se le schede del motore non sono equivalenti, in caso contrario false.
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.
[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.