Skip to content

Commit b51f26a

Browse files
Check two invariants
1 parent 3373c7a commit b51f26a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/k_smallest.rs

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ where
5757
}
5858

5959
iter.for_each(|val| {
60+
debug_assert_eq!(storage.len(), k);
6061
if is_less_than(&val, &storage[0]) {
6162
// Treating this as an push-and-pop saves having to write a sift-up implementation.
6263
// https://en.wikipedia.org/wiki/Binary_heap#Insert_then_extract

src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3190,6 +3190,7 @@ pub trait Itertools: Iterator {
31903190
let mut data: Vec<_> = iter.by_ref().take(n).collect();
31913191
// Update `data` cyclically.
31923192
let idx = iter.fold(0, |i, val| {
3193+
debug_assert_eq!(data.len(), n);
31933194
data[i] = val;
31943195
if i + 1 == n {
31953196
0

0 commit comments

Comments
 (0)