當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust zip用法及代碼示例


本文簡要介紹rust語言中 Function std::iter::zip 的用法。

用法

pub fn zip<A, B>(    a: A,     b: B) -> Zip<<A as IntoIterator>::IntoIter, <B as IntoIterator>::IntoIter> where    A: IntoIterator,    B: IntoIterator,

將參數轉換為迭代器並壓縮它們。

有關更多信息,請參閱 Iterator::zip 的文檔。

例子

#![feature(iter_zip)]
use std::iter::zip;

let xs = [1, 2, 3];
let ys = [4, 5, 6];
for (x, y) in zip(&xs, &ys) {
    println!("x:{}, y:{}", x, y);
}

// Nested zips are also possible:
let zs = [7, 8, 9];
for ((x, y), z) in zip(zip(&xs, &ys), &zs) {
    println!("x:{}, y:{}, z:{}", x, y, z);
}

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Function std::iter::zip。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。