| initialization (1) | explicit iostream (streambuf* sb); |
|---|
| initialization (1) | explicit iostream (streambuf* sb); |
|---|---|
| copy (2) | iostream& (const iostream&) = delete; |
| move (3) | protected: iostream& (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).