std::basic_streambuf<CharT,Traits>::eback, gptr, egptr
Min standard notice:
Returns pointers defining the get area.
# Declarations
char_type* eback() const;
char_type* gptr() const;
char_type* egptr() const;
# Return value
- The pointer to the beginning of the get area.
# Notes
While the names “gptr” and “egptr” refer to the get area, the name “eback” refers to the end of the putback area: stepping backwards from gptr, characters can be put back until eback.
# Example
This section is incompleteReason: no example