Skip to content

Commit d7c99d5

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

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/adaptors/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ where
612612
/// See [`.tuple_combinations()`](crate::Itertools::tuple_combinations) for more
613613
/// information.
614614
#[derive(Clone, Debug)]
615-
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
615+
#[must_use = "this iterator adaptor is not lazy but does nearly nothing unless consumed"]
616616
pub struct TupleCombinations<I, T>
617617
where
618618
I: Iterator,

tests/laziness.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,15 @@ must_use_tests! {
196196
while_some {
197197
let _ = Panicking.map(Some).while_some();
198198
}
199-
#[ignore]
200-
tuple_combinations {
199+
tuple_combinations1 {
201200
let _ = Panicking.tuple_combinations::<(_,)>();
201+
}
202+
#[should_panic]
203+
tuple_combinations2 {
202204
let _ = Panicking.tuple_combinations::<(_, _)>();
205+
}
206+
#[should_panic]
207+
tuple_combinations3 {
203208
let _ = Panicking.tuple_combinations::<(_, _, _)>();
204209
}
205210
combinations {

0 commit comments

Comments
 (0)