tmp/tmpbr6el84n/{from.md → to.md}
RENAMED
|
@@ -1,21 +1,18 @@
|
|
| 1 |
-
#####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
char do_toupper(char) const;
|
| 5 |
const char* do_toupper(char* low, const char* high) const;
|
| 6 |
char do_tolower(char) const;
|
| 7 |
const char* do_tolower(char* low, const char* high) const;
|
| 8 |
|
| 9 |
virtual char do_widen(char c) const;
|
| 10 |
-
virtual const char* do_widen(const char* low,
|
| 11 |
-
const char* high,
|
| 12 |
-
char* to) const;
|
| 13 |
virtual char do_narrow(char c, char dfault) const;
|
| 14 |
-
virtual const char* do_narrow(const char* low,
|
| 15 |
-
const char* high,
|
| 16 |
char dfault, char* to) const;
|
| 17 |
```
|
| 18 |
|
| 19 |
These functions are described identically as those members of the same
|
| 20 |
-
name in the `ctype` class template
|
| 21 |
|
|
|
|
| 1 |
+
##### Virtual functions <a id="facet.ctype.char.virtuals">[[facet.ctype.char.virtuals]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
char do_toupper(char) const;
|
| 5 |
const char* do_toupper(char* low, const char* high) const;
|
| 6 |
char do_tolower(char) const;
|
| 7 |
const char* do_tolower(char* low, const char* high) const;
|
| 8 |
|
| 9 |
virtual char do_widen(char c) const;
|
| 10 |
+
virtual const char* do_widen(const char* low, const char* high, char* to) const;
|
|
|
|
|
|
|
| 11 |
virtual char do_narrow(char c, char dfault) const;
|
| 12 |
+
virtual const char* do_narrow(const char* low, const char* high,
|
|
|
|
| 13 |
char dfault, char* to) const;
|
| 14 |
```
|
| 15 |
|
| 16 |
These functions are described identically as those members of the same
|
| 17 |
+
name in the `ctype` class template [[locale.ctype.members]].
|
| 18 |
|