tmp/tmpqhvau8y6/{from.md → to.md}
RENAMED
|
@@ -1,23 +1,15 @@
|
|
| 1 |
##### `num_put` members <a id="facet.num.put.members">[[facet.num.put.members]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 5 |
-
|
| 6 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 7 |
-
|
| 8 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 9 |
-
|
| 10 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 11 |
-
|
| 12 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 13 |
-
unsigned long long val) const;
|
| 14 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 15 |
-
double val) const;
|
| 16 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 17 |
-
long double val) const;
|
| 18 |
-
iter_type put(iter_type out, ios_base& str, char_type fill,
|
| 19 |
-
const void* val) const;
|
| 20 |
```
|
| 21 |
|
| 22 |
*Returns:* `do_put(out, str, fill, val)`.
|
| 23 |
|
|
|
|
| 1 |
##### `num_put` members <a id="facet.num.put.members">[[facet.num.put.members]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, bool val) const;
|
| 5 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, long val) const;
|
| 6 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, long long val) const;
|
| 7 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, unsigned long val) const;
|
| 8 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, unsigned long long val) const;
|
| 9 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, double val) const;
|
| 10 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, long double val) const;
|
| 11 |
+
iter_type put(iter_type out, ios_base& str, char_type fill, const void* val) const;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
```
|
| 13 |
|
| 14 |
*Returns:* `do_put(out, str, fill, val)`.
|
| 15 |
|