char_type* pbase() const;
Returns:
The beginning pointer for the output sequence.
char_type* pptr() const;
Returns:
The next pointer for the output sequence.
char_type* epptr() const;
Returns:
The end pointer for the output sequence.
void pbump(int n);
Effects:
Adds n to the next pointer for the output sequence.
void setp(char_type* pbeg, char_type* pend);
Postconditions:
pbeg == pbase(),
pbeg == pptr(),
and
pend == epptr().