tmp/tmprh18jl5r/{from.md → to.md}
RENAMED
|
@@ -14,11 +14,11 @@ template<class ForwardIterator, class T, class Compare>
|
|
| 14 |
|
| 15 |
*Requires:* The elements `e` of \[`first`, `last`) shall be partitioned
|
| 16 |
with respect to the expression `!(value < e)` or `!comp(value, e)`.
|
| 17 |
|
| 18 |
*Returns:* The furthermost iterator `i` in the range \[`first`, `last`\]
|
| 19 |
-
such that for
|
| 20 |
following corresponding conditions hold: `!(value < *j)` or
|
| 21 |
`comp(value, *j) == false`.
|
| 22 |
|
| 23 |
-
*Complexity:* At most log₂(last - first) + 𝑂(1) comparisons.
|
| 24 |
|
|
|
|
| 14 |
|
| 15 |
*Requires:* The elements `e` of \[`first`, `last`) shall be partitioned
|
| 16 |
with respect to the expression `!(value < e)` or `!comp(value, e)`.
|
| 17 |
|
| 18 |
*Returns:* The furthermost iterator `i` in the range \[`first`, `last`\]
|
| 19 |
+
such that for every iterator `j` in the range \[`first`, `i`) the
|
| 20 |
following corresponding conditions hold: `!(value < *j)` or
|
| 21 |
`comp(value, *j) == false`.
|
| 22 |
|
| 23 |
+
*Complexity:* At most log₂(`last - first`) + 𝑂(1) comparisons.
|
| 24 |
|