rustHow to zip two vectors in Rust?
Zipping two vectors in Rust can be done using the zip method. This method takes two iterators and returns a new iterator of tuples, where the first element of each tuple 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, 6];
let zipped: Vec<_> = v1.iter().zip(v2.iter()).collect();
println!("{:?}", zipped);
Output example
[(1, 4), (2, 5), (3, 6)]
Code explanation
let v1 = vec![1, 2, 3];: creates a vectorv1with elements1,2, and3.let v2 = vec![4, 5, 6];: creates a vectorv2with elements4,5, and6.let zipped: Vec<_> = v1.iter().zip(v2.iter()).collect();: creates a new vectorzippedby zippingv1andv2using thezipmethod. Thezipmethod takes two iterators and returns a new iterator of tuples, where the first element of each tuple is taken from the first iterator, and the second element is taken from the second iterator. Thecollectmethod is then used to collect the iterator into a vector.println!("{:?}", zipped);: prints the vectorzippedto the console.
Helpful links
Related
More of Rust
- How to replace strings using Rust regex?
- How to match whitespace with a regex in Rust?
- How to calculate the sum of a Rust slice?
- How to extend struct from another struct in Rust
- How to parse a file with Rust regex?
- How to sort a Rust HashMap?
- How to ignore case in Rust regex?
- Yield example in Rust
- How to find the first match in a Rust regex?
- How to perform matrix operations in Rust?
See more codes...