std::swap(std::basic_stringbuf) (3) Linux Manual Page
std::swap(std::basic_stringbuf) – std::swap(std::basic_stringbuf) Synopsis template <class CharT, class Traits, class Alloc> void swap(std::basic_stringbuf<CharT, Traits, Alloc> &lhs, (since C++ 11) std::basic_stringbuf<CharT, Traits, Alloc> &rhs); Overloads the std::swap algorithm for std::basic_stringbuf. Exchanges the state of lhs with that of rhs. Effectively calls lhs.swap(rhs). Parameters lhs, rhs – std::basic_stringbuf objects whose states to swap Return value (none) Example…
