Name
left function — Manipulator to left-align output
Synopsis
ios_base& left(ios_base& stream)
The left
function is a
manipulator that selects left-alignment for output to stream
. The function calls stream.setf(ios_base::left
, ios_base::adjustfield)
and returns
stream
.