std::ostrstream::pcount
From cppreference.com
< cpp | io | ostrstream
int pcount() const; |
||
Returns the number of characters that were output in the put area of the associated std::strstreambuf. Effectively calls rdbuf()->pcount()
Parameters
(none)
Return value
The number of characters in the put area, or zero if nothing was output.