From Jason Turner

[ostreambuf.iter.cons]

Diff to HTML by rtfpessoa

tmp/tmp3_dwrzaq/{from.md → to.md} RENAMED
@@ -2,17 +2,17 @@
2
 
3
  ``` cpp
4
  ostreambuf_iterator(ostream_type& s) noexcept;
5
  ```
6
 
7
- *Requires:* `s.rdbuf()` shall not null pointer.
8
 
9
- *Effects:* `:sbuf_(s.rdbuf()) {}`.
10
 
11
  ``` cpp
12
  ostreambuf_iterator(streambuf_type* s) noexcept;
13
  ```
14
 
15
  *Requires:* `s` shall not be a null pointer.
16
 
17
- *Effects:* `: `*`sbuf_`*`(s) {}`.
18
 
 
2
 
3
  ``` cpp
4
  ostreambuf_iterator(ostream_type& s) noexcept;
5
  ```
6
 
7
+ *Requires:* `s.rdbuf()` shall not be a null pointer.
8
 
9
+ *Effects:* Initializes `sbuf_` with `s.rdbuf()`.
10
 
11
  ``` cpp
12
  ostreambuf_iterator(streambuf_type* s) noexcept;
13
  ```
14
 
15
  *Requires:* `s` shall not be a null pointer.
16
 
17
+ *Effects:* Initializes `sbuf_` with `s`.
18