From Jason Turner

[any.cons]

Diff to HTML by rtfpessoa

tmp/tmpw3lgmbor/{from.md → to.md} RENAMED
@@ -56,13 +56,12 @@ Let `VT` be `decay_t<T>`.
56
  *Constraints:* `is_copy_constructible_v<VT>` is `true` and
57
  `is_constructible_v<VT, Args...>` is `true`.
58
 
59
  *Preconditions:* `VT` meets the *Cpp17CopyConstructible* requirements.
60
 
61
- *Effects:* Initializes the contained value as if
62
- direct-non-list-initializing an object of type `VT` with the arguments
63
- `std::forward<Args>(args)...`.
64
 
65
  *Ensures:* `*this` contains a value of type `VT`.
66
 
67
  *Throws:* Any exception thrown by the selected constructor of `VT`.
68
 
@@ -76,13 +75,12 @@ Let `VT` be `decay_t<T>`.
76
  *Constraints:* `is_copy_constructible_v<VT>` is `true` and
77
  `is_constructible_v<VT, initializer_list<U>&, Args...>` is `true`.
78
 
79
  *Preconditions:* `VT` meets the *Cpp17CopyConstructible* requirements.
80
 
81
- *Effects:* Initializes the contained value as if
82
- direct-non-list-initializing an object of type `VT` with the arguments
83
- `il, std::forward<Args>(args)...`.
84
 
85
  *Ensures:* `*this` contains a value.
86
 
87
  *Throws:* Any exception thrown by the selected constructor of `VT`.
88
 
 
56
  *Constraints:* `is_copy_constructible_v<VT>` is `true` and
57
  `is_constructible_v<VT, Args...>` is `true`.
58
 
59
  *Preconditions:* `VT` meets the *Cpp17CopyConstructible* requirements.
60
 
61
+ *Effects:* Direct-non-list-initializes the contained value of type `VT`
62
+ with `std::forward<Args>(args)...`.
 
63
 
64
  *Ensures:* `*this` contains a value of type `VT`.
65
 
66
  *Throws:* Any exception thrown by the selected constructor of `VT`.
67
 
 
75
  *Constraints:* `is_copy_constructible_v<VT>` is `true` and
76
  `is_constructible_v<VT, initializer_list<U>&, Args...>` is `true`.
77
 
78
  *Preconditions:* `VT` meets the *Cpp17CopyConstructible* requirements.
79
 
80
+ *Effects:* Direct-non-list-initializes the contained value of type `VT`
81
+ with `il, std::forward<Args>(args)...`.
 
82
 
83
  *Ensures:* `*this` contains a value.
84
 
85
  *Throws:* Any exception thrown by the selected constructor of `VT`.
86