void setp( char_type* pbeg, char_type* pend );
Sets the values of the pointers defining the put area. Specifically, after the call pbase() == pbeg, pptr() == pbeg, epptr() == pend.
Parameters
pbeg - pointer to the new beginning of the put area pend - pointer to the new end of the put area
Return value
(none).
Example
#include <iostream>
#include <array>
// Buffer for std::ostream implemented by std::array
template<std::size_t SIZE, class CharT =