tmp/tmp8y095ts8/{from.md → to.md}
RENAMED
|
@@ -19,7 +19,7 @@ implies `!comp(value, e)`.
|
|
| 19 |
*Returns:* `true` if there is an iterator `i` in the range \[`first`,
|
| 20 |
`last`) that satisfies the corresponding conditions:
|
| 21 |
`!(*i < value) && !(value < *i)` or
|
| 22 |
`comp(*i, value) == false && comp(value, *i) == false`.
|
| 23 |
|
| 24 |
-
*Complexity:* At most
|
| 25 |
|
|
|
|
| 19 |
*Returns:* `true` if there is an iterator `i` in the range \[`first`,
|
| 20 |
`last`) that satisfies the corresponding conditions:
|
| 21 |
`!(*i < value) && !(value < *i)` or
|
| 22 |
`comp(*i, value) == false && comp(value, *i) == false`.
|
| 23 |
|
| 24 |
+
*Complexity:* At most log₂(`last - first`) + 𝑂(1) comparisons.
|
| 25 |
|