public member function
<fstream>

std::basic_ofstream::operator=

copy (1)
basic_ofstream& operator= (const basic_ofstream&) = delete;
move (2)
basic_ofstream& operator= (basic_ofstream&& rhs);
Move assignment
Acquires the contents of rhs, by move-assigning its members and base classes.

Parameters

rhs
Another basic_ofstream object of the same type (with the same template parameters charT and traits).

Return Value

*this

Data races

Modifies both stream objects (*this and rhs).

Exception safety

No-throw guarantee: this member function never throws exceptions.

See also