protected virtual member function
<streambuf> <iostream>
basic_streambuf* setbuf (char_type* s, streamsize n);
Set buffer
Parameters
- s, n
- Arguments that may be used by overriding functions in derived classes.
Member type char_type is the type of the characters in the stream buffer (the first class template parameter).
streamsize is a signed integral type.
Return Value
Returns this.
Data races
Introduces no data races, but overriden versions in derived classes may.
Exception safety
No-throw guarantee: this default definition never throws exceptions.