std::basic_streambuf::in_avail
From Cppreference
< cpp | io | basic streambuf
std::streamsize in_avail();
|
||
Returns the number of characters available in the get area. If a read position is available, effectively calls egptr() - gptr(), otherwise calls std::showmanyc().
This section is incomplete Reason: does this function guarantee that this many characters can be read without underflow? |
Contents |
[edit] Parameters
(none)
[edit] Return value
The number of characters available in the get area.
[edit] Example
This section is incomplete |
[edit] See also
This section is incomplete |