operator==,!=(std::discard_block_engine)
De cppreference.com
< cpp | numeric | random | discard block engine
![]() | Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate. La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
template<class Engine, size_t p, size_t r > bool operator==(const discard_block_engine<Engine,p,r>& lhs, | (1) | (desde C++11) |
template<class Engine, size_t p, size_t r > bool operator==(const discard_block_engine<Engine,p,r>& lhs, | (2) | (desde C++11) |
Compara dos pseudo-aleatorios adaptadores Número del motor. Dos adaptadores de motores son iguales, si sus motores subyacentes son iguales y su estado interno (si lo hay) es igual, es decir, si se generan valores equivalentes para cualquier número de llamadas 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.
[editar]Parámetros
lhs, rhs | - | adaptadores del motor para comparar 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. |
[editar]Valor de retorno
1)
true si los adaptadores de motor son equivalentes, false lo contrario .
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 los adaptadores de motor no son equivalentes, false lo contrario .
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.
[editar]Excepciones
(Ninguno)
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.