std::swap(std::basic_stringbuf) (3) - Linux Manuals

std::swap(std::basic_stringbuf): std::swap(std::basic_stringbuf)

NAME

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


 This section is incomplete
 Reason: no example

See also


swap swaps two basic_stringbuf objects
        (public member function)
(C++11)
        swaps the values of two objects
swap (function template)