std::experimental::ostream_joiner<DelimT,CharT,Traits>::ostream_joiner

  1. 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

# Example

This section is incompleteReason: no example