Prev | Next |
os << x
Base
value, corresponding to
x
,
to the output stream
os
.
b
is a
Base
object,
os << b
returns a reference to
os
.
os
has prototype
std::ostream& os
x
has one of the following prototypes
const AD<Base>& x
const VecAD<Base>::reference& x
os
.
For example, if the operand
y
has prototype
AD<Base> y
then the syntax
os << x << y
will output the value corresponding to
x
followed by the value corresponding to
y
.
Base
operation sequence
.