29
Input/output library
[input.output]
29.7
Formatting and manipulators
[iostream.format]
29.7.5
Output streams
[output.streams]
29.7.5.5
Rvalue stream insertion
[ostream.rvalue]
🔗
template
<
class
Ostream,
class
T
>
Ostream
&
&
operator
<
<
(
Ostream
&
&
os,
const
T
&
x
)
;
1
#
Constraints:
The expression
os
<
<
x
is well-formed when treated as an unevaluated operand and
Ostream
is publicly and unambiguously derived from
ios_base
.
2
#
Effects:
As if by:
os
<
<
x;
3
#
Returns:
std
::
move
(
os
)
.