tmp/tmplwxkgfk6/{from.md → to.md}
RENAMED
|
@@ -66,11 +66,11 @@ are convertible to `T`.
|
|
| 66 |
`first2 + (last1 - first1)`\].
|
| 67 |
|
| 68 |
*Returns:*
|
| 69 |
|
| 70 |
``` cpp
|
| 71 |
-
GENERALIZED_SUM(binary_op1, init, binary_op2(*i, *(first2 + (i - first1))),
|
| 72 |
```
|
| 73 |
|
| 74 |
for every iterator `i` in \[`first1`, `last1`).
|
| 75 |
|
| 76 |
*Complexity:* 𝑂(`last1 - first1`) applications each of `binary_op1` and
|
|
@@ -106,11 +106,11 @@ are convertible to `T`.
|
|
| 106 |
elements in the range \[`first`, `last`\].
|
| 107 |
|
| 108 |
*Returns:*
|
| 109 |
|
| 110 |
``` cpp
|
| 111 |
-
GENERALIZED_SUM(binary_op, init, unary_op(*i),
|
| 112 |
```
|
| 113 |
|
| 114 |
for every iterator `i` in \[`first`, `last`).
|
| 115 |
|
| 116 |
*Complexity:* 𝑂(`last - first`) applications each of `unary_op` and
|
|
|
|
| 66 |
`first2 + (last1 - first1)`\].
|
| 67 |
|
| 68 |
*Returns:*
|
| 69 |
|
| 70 |
``` cpp
|
| 71 |
+
GENERALIZED_SUM(binary_op1, init, binary_op2(*i, *(first2 + (i - first1))), …)
|
| 72 |
```
|
| 73 |
|
| 74 |
for every iterator `i` in \[`first1`, `last1`).
|
| 75 |
|
| 76 |
*Complexity:* 𝑂(`last1 - first1`) applications each of `binary_op1` and
|
|
|
|
| 106 |
elements in the range \[`first`, `last`\].
|
| 107 |
|
| 108 |
*Returns:*
|
| 109 |
|
| 110 |
``` cpp
|
| 111 |
+
GENERALIZED_SUM(binary_op, init, unary_op(*i), …)
|
| 112 |
```
|
| 113 |
|
| 114 |
for every iterator `i` in \[`first`, `last`).
|
| 115 |
|
| 116 |
*Complexity:* 𝑂(`last - first`) applications each of `unary_op` and
|