Skip to content

Commit 074c7fc

Browse files
Philippe-Choletjswrenn
authored andcommitted
KMergeBy is not lazy but must be used nonetheless
1 parent 2ad9e07 commit 074c7fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/kmerge_impl.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ where
153153
///
154154
/// See [`.kmerge_by()`](crate::Itertools::kmerge_by) for more
155155
/// information.
156-
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
156+
#[must_use = "this iterator adaptor is not lazy but does nearly nothing unless consumed"]
157157
pub struct KMergeBy<I, F>
158158
where
159159
I: Iterator,

tests/laziness.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ must_use_tests! {
143143
let _ = Panicking.merge_join_by(Panicking, |_, _| true);
144144
let _ = Panicking.merge_join_by(Panicking, Ord::cmp);
145145
}
146-
#[ignore]
146+
#[should_panic]
147147
kmerge {
148148
let _ = Panicking.map(|_| Panicking).kmerge();
149149
}
150-
#[ignore]
150+
#[should_panic]
151151
kmerge_by {
152152
let _ = Panicking.map(|_| Panicking).kmerge_by(|_, _| true);
153153
}

0 commit comments

Comments
 (0)