std::basic_ifstream<CharT,Traits>::operator=

Move assigns the file stream other to *this, effectively move-assigning both the std::basic_istream base class and the associated std::basic_filebuf.

# Declarations

basic_ifstream& operator=( basic_ifstream&& other );

(since C++11)

# Parameters

# Return value

*this

# Example

This section is incompleteReason: no example

# See also