Skip to content

Commit

Permalink
seekgとseekpが何の略称かを記載。
Browse files Browse the repository at this point in the history
  • Loading branch information
faithandbrave committed Aug 31, 2015
1 parent 5b31693 commit 69150d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions reference/istream/basic_istream/seekg.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ basic_istream<CharT, Traits>& seekg(off_type off, seekdir dir);
非書式化入力関数であるが、後続の`gcount()`呼び出しに影響を及ぼさない点が通常と異なる。
`seekg`は、`seek get`の略称。「読み取り用の位置の移動」を意味する。
##効果
1. (`pos_type`を引数に取るもののみ)初めにeofbitを消去する。
Expand Down
2 changes: 2 additions & 0 deletions reference/ostream/basic_ostream/seekp.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ basic_ostream<CharT, Traits>& seekp(off_type off, seekdir dir);
##概要
ストリームバッファに対し、書き込み位置の移動を指示する。
`seekp`は、`seek put`の略称。「書き込み用の位置の移動」を意味する。
##効果
1. `sentry`オブジェクトを構築する。`sentry`オブジェクトが失敗を示した場合、何もしない。
Expand Down

0 comments on commit 69150d9

Please sign in to comment.