29
Input/output library
[input.output]
29.7
Formatting and manipulators
[iostream.format]
29.7.4
Input streams
[input.streams]
29.7.4.7
Class template
basic_iostream
[iostreamclass]
29.7.4.7.2
Constructors
[iostream.cons]
🔗
explicit
basic_iostream
(
basic_streambuf
<
charT, traits
>
*
sb
)
;
1
#
Effects
: Initializes the base class subobjects with
basic_istream
<
charT, traits
>
(
sb
)
(
[istream]
) and
basic_ostream<charT, traits>(sb)
.
2
#
Postconditions
:
rdbuf
(
)
=
=
sb
and
gcount
(
)
=
=
0
.
🔗
basic_iostream
(
basic_iostream
&
&
rhs
)
;
3
#
Effects
: Move constructs from the rvalue
rhs
by constructing the
basic_istream
base class with
move
(
rhs
)
.