Skip to content

Commit 9a6fffb

Browse files
[ostream.iterator] Exposition-only style for out-stream and delim
Also change `out_stream` to `out-stream`
1 parent b2c521e commit 9a6fffb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/iterators.tex

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6768,8 +6768,8 @@
67686768
ostream_iterator& operator++(int);
67696769

67706770
private:
6771-
basic_ostream<charT,traits>* out_stream; // \expos
6772-
const charT* delim; // \expos
6771+
basic_ostream<charT,traits>* @\exposid{out-stream}@; // \expos
6772+
const charT* @\exposid{delim}@; // \expos
67736773
};
67746774
}
67756775
\end{codeblock}
@@ -6784,8 +6784,8 @@
67846784
\begin{itemdescr}
67856785
\pnum
67866786
\effects
6787-
Initializes \tcode{out_stream} with \tcode{addressof(s)} and
6788-
\tcode{delim} with \keyword{nullptr}.
6787+
Initializes \exposid{out-stream} with \tcode{addressof(s)} and
6788+
\exposid{delim} with \keyword{nullptr}.
67896789
\end{itemdescr}
67906790

67916791

@@ -6797,8 +6797,8 @@
67976797
\begin{itemdescr}
67986798
\pnum
67996799
\effects
6800-
Initializes \tcode{out_stream} with \tcode{addressof(s)} and
6801-
\tcode{delim} with \tcode{delimiter}.
6800+
Initializes \exposid{out-stream} with \tcode{addressof(s)} and
6801+
\exposid{delim} with \tcode{delimiter}.
68026802
\end{itemdescr}
68036803

68046804
\rSec3[ostream.iterator.ops]{Operations}
@@ -6813,9 +6813,9 @@
68136813
\effects
68146814
As if by:
68156815
\begin{codeblock}
6816-
*out_stream << value;
6817-
if (delim)
6818-
*out_stream << delim;
6816+
*@\exposid{out-stream}@ << value;
6817+
if (@\exposid{delim}@)
6818+
*@\exposid{out-stream}@ << @\exposid{delim}@;
68196819
return *this;
68206820
\end{codeblock}
68216821
\end{itemdescr}

0 commit comments

Comments
 (0)