You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
331 B
14 lines
331 B
#[test]
|
|
fn iproduct_hygiene() {
|
|
let _ = itertools::iproduct!(0..6);
|
|
let _ = itertools::iproduct!(0..6, 0..9);
|
|
let _ = itertools::iproduct!(0..6, 0..9, 0..12);
|
|
}
|
|
|
|
#[test]
|
|
fn izip_hygiene() {
|
|
let _ = itertools::izip!(0..6);
|
|
let _ = itertools::izip!(0..6, 0..9);
|
|
let _ = itertools::izip!(0..6, 0..9, 0..12);
|
|
}
|