namespace std {
template <class UIntType, size_t w, size_t s, size_t r>
bool operator!=(
const subtract_with_carry_engine<UIntType, w, s, r>& x,
const subtract_with_carry_engine<UIntType, w, s, r>& y);
}
概要
非等値比較を行う。
戻り値
x
とy
の状態シーケンスの、全ての値を等値比較し、等しくなければtrue
、そうでなければfalse
を返す。
計算量
O(状態シーケンスのサイズ)
例
#include <iostream>
#include <random>
int main()
{
std::ranlux24_base e1;
std::ranlux24_base e2;
e1(); // e1 == e2にならないよう、e1の状態を進める
if (e1 != e2) {
std::cout << "not equal" << std::endl;
}
else {
std::cout << "equal" << std::endl;
}
}
出力
not equal
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: 2010 ✅, 2012 ✅, 2013 ✅, 2015 ✅, 2017 ✅