std::basic_streambuf::pbump
From Cppreference
< cpp | io | basic streambuf
void pbump( int count );
|
||
Skips count characters in the put area. This is done by advancing the put pointer by count characters. No checks are done for overflow.
This section is incomplete Reason: what is the value of the skipped characters. Is there any way to 'unskip' them? |
Contents |
[edit] Parameters
count | - | number of characters to skip |
[edit] Return value
(none)
[edit] Example
This section is incomplete |
[edit] See also
advances the next pointer in the input sequence (protected member function) |