We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3373c7a commit b51f26aCopy full SHA for b51f26a
src/k_smallest.rs
@@ -57,6 +57,7 @@ where
57
}
58
59
iter.for_each(|val| {
60
+ debug_assert_eq!(storage.len(), k);
61
if is_less_than(&val, &storage[0]) {
62
// Treating this as an push-and-pop saves having to write a sift-up implementation.
63
// https://en.wikipedia.org/wiki/Binary_heap#Insert_then_extract
src/lib.rs
@@ -3190,6 +3190,7 @@ pub trait Itertools: Iterator {
3190
let mut data: Vec<_> = iter.by_ref().take(n).collect();
3191
// Update `data` cyclically.
3192
let idx = iter.fold(0, |i, val| {
3193
+ debug_assert_eq!(data.len(), n);
3194
data[i] = val;
3195
if i + 1 == n {
3196
0
0 commit comments