tmp/tmpanbdm8o2/{from.md → to.md}
RENAMED
|
@@ -15,15 +15,15 @@ template<class traits>
|
|
| 15 |
basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>& out, unsigned char c);
|
| 16 |
```
|
| 17 |
|
| 18 |
*Effects:* Behaves as a formatted output
|
| 19 |
function [[ostream.formatted.reqmts]] of `out`. Constructs a character
|
| 20 |
-
sequence `seq`. If `c` has type `char` and the character
|
| 21 |
-
stream is not `char`, then `seq` consists of `out.widen(c)`;
|
| 22 |
-
`seq` consists of `c`. Determines padding for `seq` as
|
| 23 |
-
in [[ostream.formatted.reqmts]]. Inserts `seq` into `out`.
|
| 24 |
-
`os.width(0)`.
|
| 25 |
|
| 26 |
*Returns:* `out`.
|
| 27 |
|
| 28 |
``` cpp
|
| 29 |
template<class charT, class traits>
|
|
|
|
| 15 |
basic_ostream<char, traits>& operator<<(basic_ostream<char, traits>& out, unsigned char c);
|
| 16 |
```
|
| 17 |
|
| 18 |
*Effects:* Behaves as a formatted output
|
| 19 |
function [[ostream.formatted.reqmts]] of `out`. Constructs a character
|
| 20 |
+
sequence `seq`. If `c` has type `char` and the character container type
|
| 21 |
+
of the stream is not `char`, then `seq` consists of `out.widen(c)`;
|
| 22 |
+
otherwise `seq` consists of `c`. Determines padding for `seq` as
|
| 23 |
+
described in [[ostream.formatted.reqmts]]. Inserts `seq` into `out`.
|
| 24 |
+
Calls `os.width(0)`.
|
| 25 |
|
| 26 |
*Returns:* `out`.
|
| 27 |
|
| 28 |
``` cpp
|
| 29 |
template<class charT, class traits>
|