std::basic_filebuf<CharT,Traits>::uflow
From cppreference.com
< cpp | io | basic filebuf
C++
Input/output library
| I/O manipulators | ||||
| Print functions (C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++20) | ||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
| Synchronized Output | ||||
(C++20) | ||||
| Types | ||||
| Error category interface | ||||
(C++11) | ||||
(C++11) |
std::basic_filebuf
| Public member functions | ||||
(C++11) | ||||
(C++11) | ||||
(C++26) | ||||
| Protected member functions | ||||
basic_filebuf::uflow | ||||
| Non-member functions | ||||
(C++11) |
| protected: virtual int_type uflow() |
|
Behaves like the underflow(), except that if underflow() succeeds (does not return Traits::eof()), then advances the next pointer for the get area. In other words, consumes one of the characters obtained by underflow().
Contents |
[edit] Parameters
(none)
[edit] Return value
The value of the character that was read and consumed in case of success, or Traits::eof() in case of failure.
[edit] Example
| This section is incomplete Reason: no example |
[edit] See also
| [virtual] |
reads characters from the associated input sequence to the get area and advances the next pointer (virtual protected member function of std::basic_streambuf<CharT,Traits>) [edit]
|
| [virtual] |
reads from the associated file (virtual protected member function) [edit] |
| [virtual] |
writes characters to the associated file from the put area (virtual protected member function) [edit] |