Lines Matching defs:nth
4710 assert_eq!(b.nth(2).unwrap(), v[2]);
4711 assert_eq!(b.nth(10).unwrap(), v[10]);
4712 assert_eq!(b.nth(200), None);
43370 fn nth(&mut self, n: usize) -> Option<Self::Item> {
44193 fn nth(&mut self, n: usize) -> Option<Self::Item> {
51655 fn nth(&mut self, n: usize) -> Option<I::Item> {
51656 (**self).nth(n)