- random[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp11[meta cpp]
namespace std {
template <class CharT, class Traits, class IntType>
std::basic_ostream<CharT, Traits>& operator<<(
std::basic_ostream<CharT, Traits>& os
const binomial_distribution<IntType>& x);
}
ストリームへの出力を行う。
os
に対して、分布オブジェクトx
の現在状態を出力する。
os
のフォーマットフラグが、この関数を呼び出す前の状態に戻ること。
os
#include <iostream>
#include <random>
int main()
{
std::binomial_distribution<> dist(3, 0.5);
std::cout << dist << std::endl;
}
3 5.00000000000000000e-01 0.00000000000000000e+00 1.00000000000000000e+00 0
- C++11
- Clang: ??
- GCC:
- GCC, C++11 mode: 4.7.2
- ICC: ??
- Visual C++: ??