Namespaces
Variants
Views
Actions

std::basic_fstream::operator=

From cppreference.com
< cpp | io | basic fstream
Revision as of 22:18, 2 November 2012 by P12bot (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
basic_ifstream& operator=( basic_fstream&& other );
(since C++11)

Moves the file stream. The source stream becomes of invalid state after the operation.


Contents

[edit] Parameters

other - file stream to move. other becomes of invalid state after the operation.

[edit] Return value

*this

[edit] Example

[edit] See also

(C++11)
swaps two file streams
(public member function) [edit]