Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 1.03 KB

File metadata and controls

62 lines (44 loc) · 1.03 KB

operator<<

  • 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 uniform_int_distribution<IntType>& x);
}

概要

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

効果

osに対して、分布オブジェクトxの現在状態を出力する。

事後条件

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

戻り値

os

#include <iostream>
#include <random>

int main()
{
  std::uniform_int_distribution<> dist(0, 3);
  std::cout << dist << std::endl;
}

出力例

0 3

バージョン

言語

  • C++11

処理系

参照