Lines Matching defs:v
113 let v = vec![42]; in empty() localVariable
119 let v = vec![42]; in once() localVariable
125 let v = vec![42]; in option() localVariable
131 let v: Vec<_> = (0..10).collect(); in range() localVariable
137 let v: Vec<_> = (0u16..=10).collect(); in range_inclusive() localVariable
143 let v: Vec<_> = std::iter::repeat(1).take(5).collect(); in repeatn() localVariable
150 let v: Vec<_> = s.iter().collect(); in slice_iter() localVariable
157 let mut v: Vec<_> = s.clone(); in slice_iter_mut() localVariable
170 let v: Vec<_> = s.chunks(len).collect(); in slice_chunks() localVariable
179 let v: Vec<_> = s.chunks_exact(len).collect(); in slice_chunks_exact() localVariable
187 let mut v: Vec<_> = s.clone(); in slice_chunks_mut() localVariable
200 let mut v: Vec<_> = s.clone(); in slice_chunks_exact_mut() localVariable
213 let v: Vec<_> = s.windows(2).collect(); in slice_windows() localVariable
219 let v: Vec<_> = (0..10).collect(); in vec() localVariable
227 let v: Vec<_> = (0..10).collect(); in chain() localVariable
233 let v: Vec<_> = (0..10).collect(); in cloned() localVariable
239 let v: Vec<_> = (0..10).collect(); in copied() localVariable
245 let v: Vec<_> = (0..10).enumerate().collect(); in enumerate() localVariable
251 let v: Vec<_> = (0..10).step_by(2).collect(); in step_by() localVariable
257 let v: Vec<_> = (0..10).step_by(3).collect(); in step_by_unaligned() localVariable
263 let v: Vec<_> = (0..10).collect(); in inspect() localVariable
269 let v: Vec<_> = (0..10).collect(); in update() localVariable
275 let v = [0, 10, 1, 11, 2, 12, 3, 4]; in interleave() localVariable
279 let v = [0, 10, 1, 11, 2, 12, 13, 14]; in interleave() localVariable
285 let v = [0, -1, 1, -1, 2, -1, 3, -1, 4]; in intersperse() localVariable
292 let v: Vec<_> = s.chunks(2).map(|c| c.to_vec()).collect(); in chunks() localVariable
298 let v: Vec<_> = (0..10).collect(); in map() localVariable
304 let v: Vec<_> = (0..10).collect(); in map_with() localVariable
310 let v: Vec<_> = (0..10).collect(); in map_init() localVariable
316 let v: Vec<_> = (0..10).collect(); in panic_fuse() localVariable
322 let v: Vec<_> = (0..10).rev().collect(); in rev() localVariable
328 let v: Vec<_> = (0..10).collect(); in with_max_len() localVariable
334 let v: Vec<_> = (0..10).collect(); in with_min_len() localVariable
340 let v: Vec<_> = (0..10).zip(10..20).collect(); in zip() localVariable