std::basic_stringstream (3) Linux Manual Page
std::basic_stringstream<CharT,Traits,Allocator>::str – std::basic_stringstream<CharT,Traits,Allocator>::str Synopsis std::basic_string<CharT,Traits,Allocator> str() const; (1) void str(const std::basic_string<CharT,Traits,Allocator>& new_str); (2) Manages the contents of the underlying string object. 1) Returns a copy of the underlying string as if by calling rdbuf()->str(). 2) Replaces the contents of the underlying string as if by calling rdbuf()->str(new_str). Parameters new_str – new contents of the underlying…
