tmp/tmp1va6x152/{from.md → to.md}
RENAMED
|
@@ -62,12 +62,12 @@ is `(*this)[`*`I`*` + n]` if *`I`*` + n` is non-negative and less than
|
|
| 62 |
value of `n` shifts the elements left `n` places, with zero
|
| 63 |
fill. — *end note*]
|
| 64 |
|
| 65 |
[*Example 1*: If the argument has the value -2, the first two elements
|
| 66 |
of the result will be value-initialized [[dcl.init]]; the third element
|
| 67 |
-
of the result will be assigned the value of the first element of
|
| 68 |
-
|
| 69 |
|
| 70 |
``` cpp
|
| 71 |
valarray cshift(int n) const;
|
| 72 |
```
|
| 73 |
|
|
|
|
| 62 |
value of `n` shifts the elements left `n` places, with zero
|
| 63 |
fill. — *end note*]
|
| 64 |
|
| 65 |
[*Example 1*: If the argument has the value -2, the first two elements
|
| 66 |
of the result will be value-initialized [[dcl.init]]; the third element
|
| 67 |
+
of the result will be assigned the value of the first element of
|
| 68 |
+
`*this`; etc. — *end example*]
|
| 69 |
|
| 70 |
``` cpp
|
| 71 |
valarray cshift(int n) const;
|
| 72 |
```
|
| 73 |
|