initialization (1) | explicit basic_iostream (basic_streambuf<char_type,traits_type>* sb); |
---|
initialization (1) | explicit basic_iostream (basic_streambuf<char_type,traits_type>* sb); |
---|---|
copy (2) | basic_iostream& (const basic_iostream&) = delete; |
move (3) | protected: basic_iostream& (basic_iostream&& x); |
move(x)
as argument, transferring some of x's internal components to the object: x is left with a gcount value of zero, not tied, and with its associated stream buffer unchanged (all other components of x are in an unspecified but valid state after the call).