rustHow to zip vectors of different lengths in Rust?
Zipping vectors of different lengths in Rust can be done using the zip method from the Iterator trait. This method takes two iterators and returns a new iterator of pairs, where the first element of each pair is taken from the first iterator, and the second element is taken from the second iterator.
Example code
let v1 = vec![1, 2, 3];
let v2 = vec![4, 5];
let zipped: Vec<_> = v1.iter().zip(v2.iter()).collect();
println!("{:?}", zipped);
Output example
[(1, 4), (2, 5)]
Code explanation
let v1 = vec![1, 2, 3];: creates a vectorv1with elements1,2, and3.let v2 = vec![4, 5];: creates a vectorv2with elements4and5.let zipped: Vec<_> = v1.iter().zip(v2.iter()).collect();: creates a new vectorzippedby zipping the two vectorsv1andv2using thezipmethod from theIteratortrait. Thezipmethod takes two iterators and returns a new iterator of pairs, where the first element of each pair is taken from the first iterator, and the second element is taken from the second iterator.println!("{:?}", zipped);: prints the vectorzippedto the console.
Helpful links
Related
More of Rust
- How to match a URL with a regex in Rust?
- How to replace a capture group using Rust regex?
- How to split a string with Rust regex?
- How to replace all matches using Rust regex?
- How to match whitespace with a regex in Rust?
- How to use regex with bytes in Rust?
- How to replace strings using Rust regex?
- How to get a capture group using Rust regex?
- How to use non-capturing groups in Rust regex?
- Regex example to match multiline string in Rust?
See more codes...