最終更新日時(UTC):
が更新

履歴 編集

function template
<random>

std::operator<<(C++11)

namespace std {
  template <class CharT, class Traits,
            class UIntType, size_t w, size_t s, size_t r>
  std::basic_ostream<CharT, Traits>& operator<<(
    std::basic_ostream<CharT, Traits>& os
    const subtract_with_carry_engine<UIntType, w, s, t>& x);
}

概要

ストリームへの出力を行う。

効果

osに対してフォーマットフラグios_base::dec | ios_base::leftを設定する。
フォーマットを設定したosに対して、エンジンxの現在状態を出力する。

事後条件

osのフォーマットフラグが、この関数を呼び出す前の状態に戻ること。

戻り値

os

#include <iostream>
#include <random>

int main()
{
  std::ranlux24_base engine;
  std::cout << engine << std::endl;
}

出力

15136306 8587749 2346244 16479026 15515802 9510553 16090340 14501685 13839944 10789678 11581259 9590790 5840316 5953700 13398366 8134459 16629731 6851902 15583892 1317475 4231148 9092691 5707268 2355175 0 0

バージョン

言語

  • C++11

処理系

参照