GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::basic_ios::move(3) C++ Standard Libary std::basic_ios::move(3)

std::basic_ios::move - std::basic_ios::move


protected: (since C++11)
void move( basic_ios& other );
protected: (since C++11)
void move( basic_ios&& other );


Replaces the current state with that of other, except for the associated rdbuf.
other is in valid, but unspecified state after the call. After the call to this
function, rdbuf() returns a null pointer, other.rdbuf() returns the same value as
before the call, and other.tie() returns a null pointer.


This member function is protected: it is called by the protected move constructors
of the derived stream classes std::basic_ostream and std::basic_istream, which, in
turn, are called by the public move constructors of the further derived stream
classes such as std::basic_ofstream, which know how to correctly move the associated
streambuffer.


other - the basic_ios object to transfer the state from


(none)


swap swaps with another std::basic_ios except for rdbuf
(C++11) (protected member function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.