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