Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 557 Bytes

File metadata and controls

34 lines (25 loc) · 557 Bytes

operator=

  • iterator[meta header]
  • std[meta namespace]
  • ostream_iterator[meta class]
  • function[meta id-type]
ostream_iterator<T, CharT, Traits>& operator=(const T& value);

概要

値を出力する

効果

*out_stream << value;
if(delim != 0)
  *out_stream << delim;
return *this;

out_streamは、コンストラクタで設定された出力ストリームオブジェクトへのポインタdelimは、コンストラクタで設定された区切り文字列。

出力

参照