std::basic_streambuf<CharT,Traits>::swap

From cppreference.com
< cpp‎ | io‎ | basic streambuf
 
 
Input/output library
I/O manipulators
C-style I/O
Buffers
(deprecated in C++98)
Streams
Abstractions
File I/O
String I/O
Array I/O
(deprecated in C++98)
(deprecated in C++98)
(deprecated in C++98)
Synchronized Output
Types
Error category interface
(C++11)
 
 
void swap( basic_streambuf& other );
(since C++11)

Exchanges the contents of the stream buffer with those of other.

Parameters

other - stream buffer to exchange contents with

Return value

(none)

Exceptions

(none)

Example