File tree 1 file changed +0
-4
lines changed
compiler/rustc_data_structures/src/binary_search_util
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -14,18 +14,14 @@ where
14
14
let start = data. partition_point ( |x| key_fn ( x) < * key) ;
15
15
// At this point `start` either points at the first entry with equal or
16
16
// greater key or is equal to `size` in case all elements have smaller keys
17
- // Invariant: start == size || key_fn(&data[start]) >= *key
18
17
if start == size || key_fn ( & data[ start] ) != * key {
19
18
return & [ ] ;
20
19
} ;
21
- // Invariant: start < size && key_fn(&data[start]) == *key
22
20
23
21
// Find the first entry with key > `key`. Skip `start` entries since
24
22
// key_fn(&data[start]) == *key
25
- // Invariant: offset == size || key_fn(&data[offset]) >= *key
26
23
let offset = start + 1 ;
27
24
let end = data[ offset..] . partition_point ( |x| key_fn ( x) <= * key) + offset;
28
- // Invariant: end == size || key_fn(&data[end]) > *key
29
25
30
26
& data[ start..end]
31
27
}
You can’t perform that action at this time.
0 commit comments