seekg overloads
Declared in <bslstl_istringstream.h>
Changing the current read position.
__istream_type&
seekg(pos_type);
» more...
Seek to the absolute get position position.
BaseStream&
seekg(pos_type position);
» more...
Changing the current read position.
__istream_type&
seekg(
off_type,
ios_base::seekdir);
» more...
Seek relative to direction by offset characters.
BaseStream&
seekg(
off_type offset,
ios_base::seekdir direction);
» more...
| Name | Description |
|---|---|
| __pos | A file position object. |
| position | absolute position in the input sequence |
| __off | A file offset object. |
| __dir | The direction in which to seek. |
| offset | relative offset in the input sequence |
| direction | base position for the seek |