std::basic_ios<CharT,Traits>::move

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.

# Declarations

protected:
void move( basic_ios& other );

(since C++11)

protected:
void move( basic_ios&& other );

(since C++11)

# Parameters

# Return value

(none)

# See also