tmp/tmp24o9i_g5/{from.md → to.md}
RENAMED
|
@@ -17,12 +17,12 @@ function is `*this`.
|
|
| 17 |
The descriptions of the individual formatted output functions describe
|
| 18 |
how they perform output and do not mention the `sentry` object.
|
| 19 |
|
| 20 |
If a formatted output function of a stream `os` determines padding, it
|
| 21 |
does so as follows. Given a `charT` character sequence `seq` where
|
| 22 |
-
`charT` is the character type of the stream, if the length of
|
| 23 |
-
less than `os.width()`, then enough copies of `os.fill()` are
|
| 24 |
-
this sequence as necessary to pad to a width of `os.width()`
|
| 25 |
-
If `(os.flags() & ios_base::adjustfield) == ios_base::left`
|
| 26 |
-
the fill characters are placed after the character sequence;
|
| 27 |
-
they are placed before the character sequence.
|
| 28 |
|
|
|
|
| 17 |
The descriptions of the individual formatted output functions describe
|
| 18 |
how they perform output and do not mention the `sentry` object.
|
| 19 |
|
| 20 |
If a formatted output function of a stream `os` determines padding, it
|
| 21 |
does so as follows. Given a `charT` character sequence `seq` where
|
| 22 |
+
`charT` is the character container type of the stream, if the length of
|
| 23 |
+
`seq` is less than `os.width()`, then enough copies of `os.fill()` are
|
| 24 |
+
added to this sequence as necessary to pad to a width of `os.width()`
|
| 25 |
+
characters. If `(os.flags() & ios_base::adjustfield) == ios_base::left`
|
| 26 |
+
is `true`, the fill characters are placed after the character sequence;
|
| 27 |
+
otherwise, they are placed before the character sequence.
|
| 28 |
|