- random[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp11[meta cpp]
namespace std {
template <class RealType>
bool operator!=(
const fisher_f_distribution<RealType>& a,
const fisher_f_distribution<RealType>& b);
}非等値比較を行う。
!(a == b)
定数時間
#include <iostream>
#include <random>
int main()
{
std::fisher_f_distribution<> a(3.0, 4.0);
std::fisher_f_distribution<> b(3.0, 4.5);
if (a != b) {
std::cout << "not equal" << std::endl;
}
else {
std::cout << "equal" << std::endl;
}
}not equal
- C++11
- Clang: ??
- GCC: 4.7.2
- ICC: ??
- Visual C++: ??