operator==,!=(std::discrete_distribution)
Aus cppreference.com
< cpp | numeric | random | discrete distribution
![]() | 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 ResultType > bool operator==(const discrete_distribution<ResultType>& lhs, | (1) | |
template<class ResultType > bool operator!=(const discrete_distribution<ResultType>& lhs, | (2) | |
Vergleicht zwei Verteilung Objekte. Zwei Verteilungsobjekte gleich sind, wenn die Parameterwerte und internen Zustand entspricht .
1) Original:
Compares two distribution objects. Two distribution objects are equal when parameter values and internal state is the same.
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.
Vergleicht zwei Vertriebs-Objekte auf Gleichheit .
2) Original:
Compares two distribution objects for equality.
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.
Vergleicht zwei Vertriebs-Objekte auf Ungleichheit .
Original:
Compares two distribution objects for inequality.
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 | - | Verteilung zu vergleichenden Objekte Original: distribution objects 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 die Verteilung der Objekte gleich sind, false anders
2) Original:
true if the distribution objects are equal, 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.
true wenn die Verteilung Objekten nicht gleich sind, ansonsten false
Original:
true if the distribution objects are not equal, 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]Komplexität
Constant .
Original:
Constant.
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.