Skip to content

Commit 7030eaf

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

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
@@ -6782,8 +6782,8 @@
67826782
ostream_iterator& operator++(int);
67836783

67846784
private:
6785-
basic_ostream<charT,traits>* out_stream; // \expos
6786-
const charT* delim; // \expos
6785+
basic_ostream<charT,traits>* @\exposid{out-stream}@; // \expos
6786+
const charT* @\exposid{delim}@; // \expos
67876787
};
67886788
}
67896789
\end{codeblock}
@@ -6798,8 +6798,8 @@
67986798
\begin{itemdescr}
67996799
\pnum
68006800
\effects
6801-
Initializes \tcode{out_stream} with \tcode{addressof(s)} and
6802-
\tcode{delim} with \keyword{nullptr}.
6801+
Initializes \exposid{out-stream} with \tcode{addressof(s)} and
6802+
\exposid{delim} with \keyword{nullptr}.
68036803
\end{itemdescr}
68046804

68056805

@@ -6811,8 +6811,8 @@
68116811
\begin{itemdescr}
68126812
\pnum
68136813
\effects
6814-
Initializes \tcode{out_stream} with \tcode{addressof(s)} and
6815-
\tcode{delim} with \tcode{delimiter}.
6814+
Initializes \exposid{out-stream} with \tcode{addressof(s)} and
6815+
\exposid{delim} with \tcode{delimiter}.
68166816
\end{itemdescr}
68176817

68186818
\rSec3[ostream.iterator.ops]{Operations}
@@ -6827,9 +6827,9 @@
68276827
\effects
68286828
As if by:
68296829
\begin{codeblock}
6830-
*out_stream << value;
6831-
if (delim)
6832-
*out_stream << delim;
6830+
*@\exposid{out-stream}@ << value;
6831+
if (@\exposid{delim}@)
6832+
*@\exposid{out-stream}@ << @\exposid{delim}@;
68336833
return *this;
68346834
\end{codeblock}
68356835
\end{itemdescr}

0 commit comments

Comments
 (0)