- 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 discrete_distribution<IntType>& x);
}
ストリームへの出力を行う。
os
に対して、分布オブジェクトx
の現在状態を出力する。
os
のフォーマットフラグが、この関数を呼び出す前の状態に戻ること。
os
#include <iostream>
#include <random>
int main()
{
std::discrete_distribution<> dist = {0.1, 0.2, 0.3};
std::cout << dist << std::endl;
}
3 1.66666666666666657e-01 3.33333333333333315e-01 4.99999999999999889e-01
- C++11
- Clang: ??
- GCC:
- GCC, C++11 mode: 4.7.2
- ICC: ??
- Visual C++: ??