std::experimental::ostream_joiner<DelimT,CharT,Traits>::ostream_joiner
Min standard notice:
- Constructs the iterator with the private ostream_type* member initialized with std::addressof(stream), the private delimiter member initialized with delimiter, and the private “first element” flag set to true.
# Declarations
ostream_joiner( ostream_type& stream, const DelimT& delimiter );
(library fundamentals TS v2)
ostream_joiner( ostream_type& stream, DelimT&& delimiter );
(library fundamentals TS v2)
ostream_joiner( const ostream_joiner& other ) = default;
(library fundamentals TS v2) (implicitly declared)
ostream_joiner( ostream_joiner&& other ) = default;
(library fundamentals TS v2) (implicitly declared)
# Parameters
stream: the output stream to be accessed by this iteratordelimiter: the delimiter to be inserted into the stream in between two outputsother: the ostream_joiner object from which this object is to be copy- or move-constructed
# Example
This section is incompleteReason: no example