tmp/tmppbcvqo36/{from.md → to.md}
RENAMED
|
@@ -2,11 +2,11 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
valarray();
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Effects:* Constructs a `valarray` that has zero length.[^
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
explicit valarray(size_t n);
|
| 11 |
```
|
| 12 |
|
|
@@ -26,19 +26,19 @@ valarray(const T* p, size_t n);
|
|
| 26 |
|
| 27 |
*Preconditions:* \[`p`, `p + n`) is a valid range.
|
| 28 |
|
| 29 |
*Effects:* Constructs a `valarray` that has length `n`. The values of
|
| 30 |
the elements of the array are initialized with the first `n` values
|
| 31 |
-
pointed to by the first argument.[^
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
valarray(const valarray& v);
|
| 35 |
```
|
| 36 |
|
| 37 |
*Effects:* Constructs a `valarray` that has the same length as `v`. The
|
| 38 |
elements are initialized with the values of the corresponding elements
|
| 39 |
-
of `v`.[^
|
| 40 |
|
| 41 |
``` cpp
|
| 42 |
valarray(valarray&& v) noexcept;
|
| 43 |
```
|
| 44 |
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
valarray();
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Effects:* Constructs a `valarray` that has zero length.[^10]
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
explicit valarray(size_t n);
|
| 11 |
```
|
| 12 |
|
|
|
|
| 26 |
|
| 27 |
*Preconditions:* \[`p`, `p + n`) is a valid range.
|
| 28 |
|
| 29 |
*Effects:* Constructs a `valarray` that has length `n`. The values of
|
| 30 |
the elements of the array are initialized with the first `n` values
|
| 31 |
+
pointed to by the first argument.[^11]
|
| 32 |
|
| 33 |
``` cpp
|
| 34 |
valarray(const valarray& v);
|
| 35 |
```
|
| 36 |
|
| 37 |
*Effects:* Constructs a `valarray` that has the same length as `v`. The
|
| 38 |
elements are initialized with the values of the corresponding elements
|
| 39 |
+
of `v`.[^12]
|
| 40 |
|
| 41 |
``` cpp
|
| 42 |
valarray(valarray&& v) noexcept;
|
| 43 |
```
|
| 44 |
|