From Jason Turner

[locale.time.put.virtuals]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpl54gtmiw/{from.md → to.md} +12 -4
tmp/tmpl54gtmiw/{from.md → to.md} RENAMED
@@ -7,16 +7,24 @@ iter_type do_put(iter_type s, ios_base&, char_type fill, const tm* t,
7
 
8
  *Effects:* Formats the contents of the parameter `t` into characters
9
  placed on the output sequence `s`. Formatting is controlled by the
10
  parameters `format` and `modifier`, interpreted identically as the
11
  format specifiers in the string argument to the standard library
12
- function `strftime()`[^18], except that the sequence of characters
13
- produced for those specifiers that are described as depending on the C
14
- locale are instead *implementation-defined*.[^19]
 
 
 
15
 
16
  *Returns:* An iterator pointing immediately after the last character
17
  produced.
18
 
19
- [*Note 2*: The `fill` argument may be used in the
20
  implementation-defined formats or by derivations. A space character is a
21
  reasonable default for this argument. — *end note*]
22
 
 
 
 
 
 
 
7
 
8
  *Effects:* Formats the contents of the parameter `t` into characters
9
  placed on the output sequence `s`. Formatting is controlled by the
10
  parameters `format` and `modifier`, interpreted identically as the
11
  format specifiers in the string argument to the standard library
12
+ function `strftime()`, except that the sequence of characters produced
13
+ for those specifiers that are described as depending on the C locale are
14
+ instead *implementation-defined*.
15
+
16
+ [*Note 2*: Interpretation of the `modifier` argument is
17
+ implementation-defined. — *end note*]
18
 
19
  *Returns:* An iterator pointing immediately after the last character
20
  produced.
21
 
22
+ [*Note 3*: The `fill` argument can be used in the
23
  implementation-defined formats or by derivations. A space character is a
24
  reasonable default for this argument. — *end note*]
25
 
26
+ *Recommended practice:* Interpretation of the `modifier` should follow
27
+ POSIX conventions. Implementations should refer to other standards such
28
+ as POSIX for a specification of the character sequences produced for
29
+ those specifiers described as depending on the C locale.
30
+