ostream_iterator(ostream_type& os);
ostream_iterator(ostream_type& os, const E *delim);
The first constructor initializes the output stream pointer with &os
. The delimiter string pointer designates an empty
string. The second constructor initializes the output stream pointer with &os
and the delimiter string pointer with delim
.