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


Rust Iterator.cycle用法及代碼示例


本文簡要介紹rust語言中 std::iter::Iterator.cycle 的用法。

用法

fn cycle(self) -> Cycle<Self> where    Self: Clone,

無休止地重複一個迭代器。

迭代器不會在 None 停止,而是從頭開始重新開始。再次迭代後,又會從頭開始。然後再次。然後再次。永遠。

例子

基本用法:

let a = [1, 2, 3];

let mut it = a.iter().cycle();

assert_eq!(it.next(), Some(&1));
assert_eq!(it.next(), Some(&2));
assert_eq!(it.next(), Some(&3));
assert_eq!(it.next(), Some(&1));
assert_eq!(it.next(), Some(&2));
assert_eq!(it.next(), Some(&3));
assert_eq!(it.next(), Some(&1));

相關用法


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