tmp/tmpkmlmdwtp/{from.md → to.md}
RENAMED
|
@@ -1,52 +1,52 @@
|
|
| 1 |
##### `codecvt` members <a id="locale.codecvt.members">[[locale.codecvt.members]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
result out(
|
|
|
|
| 5 |
const internT* from, const internT* from_end, const internT*& from_next,
|
| 6 |
externT* to, externT* to_end, externT*& to_next) const;
|
| 7 |
```
|
| 8 |
|
| 9 |
*Returns:*
|
| 10 |
-
`do_out(state, from, from_end, from_next, to, to_end, to_next)`
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
-
result unshift(stateT& state,
|
| 14 |
-
externT* to, externT* to_end, externT*& to_next) const;
|
| 15 |
```
|
| 16 |
|
| 17 |
-
*Returns:* `do_unshift(state, to, to_end, to_next)`
|
| 18 |
|
| 19 |
``` cpp
|
| 20 |
-
result in(
|
|
|
|
| 21 |
const externT* from, const externT* from_end, const externT*& from_next,
|
| 22 |
internT* to, internT* to_end, internT*& to_next) const;
|
| 23 |
```
|
| 24 |
|
| 25 |
*Returns:*
|
| 26 |
-
`do_in(state, from, from_end, from_next, to, to_end, to_next)`
|
| 27 |
|
| 28 |
``` cpp
|
| 29 |
int encoding() const noexcept;
|
| 30 |
```
|
| 31 |
|
| 32 |
-
*Returns:* `do_encoding()`
|
| 33 |
|
| 34 |
``` cpp
|
| 35 |
bool always_noconv() const noexcept;
|
| 36 |
```
|
| 37 |
|
| 38 |
-
*Returns:* `do_always_noconv()`
|
| 39 |
|
| 40 |
``` cpp
|
| 41 |
-
int length(stateT& state, const externT* from, const externT* from_end,
|
| 42 |
-
size_t max) const;
|
| 43 |
```
|
| 44 |
|
| 45 |
-
*Returns:* `do_length(state, from,from_end,max)`
|
| 46 |
|
| 47 |
``` cpp
|
| 48 |
int max_length() const noexcept;
|
| 49 |
```
|
| 50 |
|
| 51 |
-
*Returns:* `do_max_length()`
|
| 52 |
|
|
|
|
| 1 |
##### `codecvt` members <a id="locale.codecvt.members">[[locale.codecvt.members]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
result out(
|
| 5 |
+
stateT& state,
|
| 6 |
const internT* from, const internT* from_end, const internT*& from_next,
|
| 7 |
externT* to, externT* to_end, externT*& to_next) const;
|
| 8 |
```
|
| 9 |
|
| 10 |
*Returns:*
|
| 11 |
+
`do_out(state, from, from_end, from_next, to, to_end, to_next)`.
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
+
result unshift(stateT& state, externT* to, externT* to_end, externT*& to_next) const;
|
|
|
|
| 15 |
```
|
| 16 |
|
| 17 |
+
*Returns:* `do_unshift(state, to, to_end, to_next)`.
|
| 18 |
|
| 19 |
``` cpp
|
| 20 |
+
result in(
|
| 21 |
+
stateT& state,
|
| 22 |
const externT* from, const externT* from_end, const externT*& from_next,
|
| 23 |
internT* to, internT* to_end, internT*& to_next) const;
|
| 24 |
```
|
| 25 |
|
| 26 |
*Returns:*
|
| 27 |
+
`do_in(state, from, from_end, from_next, to, to_end, to_next)`.
|
| 28 |
|
| 29 |
``` cpp
|
| 30 |
int encoding() const noexcept;
|
| 31 |
```
|
| 32 |
|
| 33 |
+
*Returns:* `do_encoding()`.
|
| 34 |
|
| 35 |
``` cpp
|
| 36 |
bool always_noconv() const noexcept;
|
| 37 |
```
|
| 38 |
|
| 39 |
+
*Returns:* `do_always_noconv()`.
|
| 40 |
|
| 41 |
``` cpp
|
| 42 |
+
int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
|
|
|
|
| 43 |
```
|
| 44 |
|
| 45 |
+
*Returns:* `do_length(state, from, from_end, max)`.
|
| 46 |
|
| 47 |
``` cpp
|
| 48 |
int max_length() const noexcept;
|
| 49 |
```
|
| 50 |
|
| 51 |
+
*Returns:* `do_max_length()`.
|
| 52 |
|