From Jason Turner

[facet.num.put.members]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpqhvau8y6/{from.md → to.md} +8 -16
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
- bool val) const;
6
- iter_type put(iter_type out, ios_base& str, char_type fill,
7
- long val) const;
8
- iter_type put(iter_type out, ios_base& str, char_type fill,
9
- long long val) const;
10
- iter_type put(iter_type out, ios_base& str, char_type fill,
11
- unsigned long val) const;
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