basic_ios::move
Moves all values, except the pointer to the stream buffer, from the parameter to the current object.
void move(
basic_ios&& _Right
);
Parameters
- _Right
The ios_base object to move values from.
Remarks
The protected member function moves all the values stored in _Right to *this except the stored stream buffer pointer, which is unchanged in _Right and set to a null pointer in *this. The stored tie pointer is set to a null pointer in _Right.
Requirements
Header: <ios>
Namespace: std