tmp/tmp5lpuhsbn/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
#### Members <a id="locale.members">[[locale.members]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class Facet> locale combine(const locale& other) const;
|
| 5 |
```
|
| 6 |
|
|
@@ -18,5 +18,15 @@ string name() const;
|
|
| 18 |
```
|
| 19 |
|
| 20 |
*Returns:* The name of `*this`, if it has one; otherwise, the string
|
| 21 |
`"*"`.
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
##### Members <a id="locale.members">[[locale.members]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class Facet> locale combine(const locale& other) const;
|
| 5 |
```
|
| 6 |
|
|
|
|
| 18 |
```
|
| 19 |
|
| 20 |
*Returns:* The name of `*this`, if it has one; otherwise, the string
|
| 21 |
`"*"`.
|
| 22 |
|
| 23 |
+
``` cpp
|
| 24 |
+
text_encoding encoding() const;
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
*Mandates:* `CHAR_BIT == 8` is `true`.
|
| 28 |
+
|
| 29 |
+
*Returns:* A `text_encoding` object representing the
|
| 30 |
+
implementation-defined encoding scheme associated with the locale
|
| 31 |
+
`*this`.
|
| 32 |
+
|