std::basic_istream::tellg
From Cppreference
< cpp | io | basic istream
C++ Standard Library | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Input/output library | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::basic_istream | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pos_type tellg();
|
||
Returns input position indicator of the current associated streambuf object.
Essentially calls rdbuf()->pubseekoff(0, std::ios_base::cur, std::ios_base::in).
Contents |
[edit] Parameters
(none)
[edit] Return value
current input position indicator on success, -1 if a failure (fail() != false) occurs.
[edit] Example
This section is incomplete |
[edit] See also
|
sets the input position indicator (public member function) |
|
|
returns the output position indicator (public member function of std::basic_ostream) |
|
|
sets the output position indicator (public member function of std::basic_ostream) |