namespace std {
template <class CharT, class Traits,
class UIntType, UIntType a, UIntType c, UIntType m>
std::basic_ostream<CharT, Traits>& operator<<(
std::basic_ostream<CharT, Traits>& os
const linear_congruential_engine<UIntType, a, c, m>& x);
}
概要
ストリームへの出力を行う。
効果
os
に対してフォーマットフラグios_base::dec | ios_base::left
を設定する。
フォーマットを設定したos
に対して、エンジンx
の現在状態を出力する。
事後条件
os
のフォーマットフラグが、この関数を呼び出す前の状態に戻ること。
戻り値
os
例
#include <iostream>
#include <random>
int main()
{
std::minstd_rand engine;
std::cout << engine << std::endl;
}
出力例
1
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: ??