tmp/tmpl1lxid68/{from.md → to.md}
RENAMED
|
@@ -1,31 +1,31 @@
|
|
| 1 |
##### `basic_ostream::operator<<` <a id="ostream.inserters">[[ostream.inserters]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
basic_ostream<charT,traits>& operator<<
|
| 5 |
-
(basic_ostream<charT,traits>& (*pf)(basic_ostream<charT,traits>&))
|
| 6 |
```
|
| 7 |
|
| 8 |
*Effects:* None. Does not behave as a formatted output function (as
|
| 9 |
described in [[ostream.formatted.reqmts]]).
|
| 10 |
|
| 11 |
-
*Returns:* `pf(*this)`.[^
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
basic_ostream<charT,traits>& operator<<
|
| 15 |
-
(basic_ios<charT,traits>& (*pf)(basic_ios<charT,traits>&))
|
| 16 |
```
|
| 17 |
|
| 18 |
*Effects:* Calls `pf(*this)`. This inserter does not behave as a
|
| 19 |
formatted output function (as described
|
| 20 |
in [[ostream.formatted.reqmts]]).
|
| 21 |
|
| 22 |
-
*Returns:* `*this`.[^
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
basic_ostream<charT,traits>& operator<<
|
| 26 |
-
(ios_base& (*pf)(ios_base&))
|
| 27 |
```
|
| 28 |
|
| 29 |
*Effects:* Calls `pf(*this)`. This inserter does not behave as a
|
| 30 |
formatted output function (as described
|
| 31 |
in [[ostream.formatted.reqmts]]).
|
|
|
|
| 1 |
##### `basic_ostream::operator<<` <a id="ostream.inserters">[[ostream.inserters]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
basic_ostream<charT,traits>& operator<<
|
| 5 |
+
(basic_ostream<charT,traits>& (*pf)(basic_ostream<charT,traits>&));
|
| 6 |
```
|
| 7 |
|
| 8 |
*Effects:* None. Does not behave as a formatted output function (as
|
| 9 |
described in [[ostream.formatted.reqmts]]).
|
| 10 |
|
| 11 |
+
*Returns:* `pf(*this)`.[^33]
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
basic_ostream<charT,traits>& operator<<
|
| 15 |
+
(basic_ios<charT,traits>& (*pf)(basic_ios<charT,traits>&));
|
| 16 |
```
|
| 17 |
|
| 18 |
*Effects:* Calls `pf(*this)`. This inserter does not behave as a
|
| 19 |
formatted output function (as described
|
| 20 |
in [[ostream.formatted.reqmts]]).
|
| 21 |
|
| 22 |
+
*Returns:* `*this`.[^34]
|
| 23 |
|
| 24 |
``` cpp
|
| 25 |
basic_ostream<charT,traits>& operator<<
|
| 26 |
+
(ios_base& (*pf)(ios_base&));
|
| 27 |
```
|
| 28 |
|
| 29 |
*Effects:* Calls `pf(*this)`. This inserter does not behave as a
|
| 30 |
formatted output function (as described
|
| 31 |
in [[ostream.formatted.reqmts]]).
|