Lines Matching refs:skip
1083 .skip(100)
7535 .skip(1)
7549 let sink: Vec<_> = iter.skip(1).take(1).collect();
27816 // instead of skipping using .skip() (which creates a new struct),
27817 // we skip manually so we can access the head field without
29766 /// with an additional parameter to skip part of the key array.
37612 let large_keys = data.iter().skip(len / 2).map(|kv| kv.0);
42942 /// assert!(deque.iter().skip(i).all(|&x| !(x < 5)));