Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 565 Bytes

File metadata and controls

32 lines (22 loc) · 565 Bytes

operator=

  • iterator[meta header]
  • std[meta namespace]
  • ostreambuf_iterator[meta class]
  • function[meta id-type]
ostreambuf_iterator& operator=(CharT c);

概要

値を出力する

効果

failed() == falseの場合にsbuf_->sputc(c)を行い、そうでなければ何もしない。

sbuf_はメンバ変数として保持しているstreambuf_typeオブジェクトへのポインタ

戻り値

*this

出力

参照