[streambuf.put.area] (original) (raw)
31 Input/output library [input.output]
31.6 Stream buffers [stream.buffers]
31.6.3 Class template basic_streambuf [streambuf]
31.6.3.4 Protected member functions [streambuf.protected]
31.6.3.4.3 Put area access [streambuf.put.area]
char_type* pbase() const;
Returns: The beginning pointer for the output sequence.
Returns: The next pointer for the output sequence.
char_type* epptr() const;
Returns: The end pointer for the output sequence.
Effects: Adds n to the next pointer for the output sequence.
void setp(char_type* pbeg, char_type* pend);
Preconditions: [pbeg, pend) is a valid range.
Postconditions: pbeg == pbase(),pbeg == pptr(), andpend == epptr() are all true.