We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Itertools::get
1 parent 38ec020 commit 734742cCopy full SHA for 734742c
tests/laziness.rs
@@ -63,6 +63,14 @@ must_use_tests! {
63
intersperse_with {
64
let _ = Panicking.intersperse_with(|| 0);
65
}
66
+ get {
67
+ let _ = Panicking.get(1..4);
68
+ let _ = Panicking.get(1..=4);
69
+ let _ = Panicking.get(1..);
70
+ let _ = Panicking.get(..4);
71
+ let _ = Panicking.get(..=4);
72
+ let _ = Panicking.get(..);
73
+ }
74
zip_longest {
75
let _ = Panicking.zip_longest(Panicking);
76
0 commit comments