std::ostreambuf_iterator<CharT,Traits>::operator=
Min standard notice:
If failed() returns false, inserts the character c into the associated stream buffer by calling pbuf->sputc(c), where pbuf is the private member of type streambuf_type*. Otherwise, does nothing.
# Declarations
ostreambuf_iterator& operator=( CharT c );
# Parameters
c: the character to insert
# Return value
*this
# Example
This section is incompleteReason: no example