tmp/tmpy7vqwvnu/{from.md → to.md}
RENAMED
|
@@ -92,17 +92,17 @@ template<class ExecutionPolicy, class ForwardIterator, class Size, class T,
|
|
| 92 |
Size count, const T& value,
|
| 93 |
BinaryPredicate pred);
|
| 94 |
```
|
| 95 |
|
| 96 |
*Mandates:* The type `Size` is convertible to an integral
|
| 97 |
-
type
|
| 98 |
|
| 99 |
*Returns:* The first iterator `i` in the range \[`first`, `last-count`)
|
| 100 |
such that for every non-negative integer `n` less than `count` the
|
| 101 |
following corresponding conditions hold:
|
| 102 |
-
`*(i + n) == value, pred(*(i + n),value) != false`. Returns `last` if
|
| 103 |
-
such iterator is found.
|
| 104 |
|
| 105 |
*Complexity:* At most `last - first` applications of the corresponding
|
| 106 |
predicate.
|
| 107 |
|
| 108 |
``` cpp
|
|
|
|
| 92 |
Size count, const T& value,
|
| 93 |
BinaryPredicate pred);
|
| 94 |
```
|
| 95 |
|
| 96 |
*Mandates:* The type `Size` is convertible to an integral
|
| 97 |
+
type [[conv.integral]], [[class.conv]].
|
| 98 |
|
| 99 |
*Returns:* The first iterator `i` in the range \[`first`, `last-count`)
|
| 100 |
such that for every non-negative integer `n` less than `count` the
|
| 101 |
following corresponding conditions hold:
|
| 102 |
+
`*(i + n) == value, pred(*(i + n), value) != false`. Returns `last` if
|
| 103 |
+
no such iterator is found.
|
| 104 |
|
| 105 |
*Complexity:* At most `last - first` applications of the corresponding
|
| 106 |
predicate.
|
| 107 |
|
| 108 |
``` cpp
|