- random[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp11[meta cpp]
namespace std {
template <class IntType>
bool operator==(
const uniform_int_distribution<IntType>& a,
const uniform_int_distribution<IntType>& b);
}
等値比較を行う。
a.
param()
== b.
param()
であり、かつa(g)
によって生成される値の無限シーケンスS1
、b(g)
によって生成される値の無限シーケンスS2
が等しい場合true
を返し、そうでなければfalse
を返す。
定数時間
#include <iostream>
#include <random>
int main()
{
std::uniform_int_distribution<> a(0, 3);
std::uniform_int_distribution<> b(0, 3);
if (a == b) {
std::cout << "equal" << std::endl;
}
else {
std::cout << "not equal" << std::endl;
}
}
equal
- C++11
- Clang: ??
- GCC: 4.7.2 [mark verified]
- ICC: ??
- Visual C++: ??