本文簡要介紹rust語言中 Function std::iter::repeat
的用法。
用法
pub fn repeat<T>(elt: T) -> Repeat<T> where T: Clone,
創建一個無限重複單個元素的新迭代器。
repeat()
函數一遍又一遍地重複單個值。
像 repeat()
這樣的無限迭代器經常與像 Iterator::take()
這樣的適配器一起使用,以使它們成為有限的。
如果您需要的迭代器的元素類型沒有實現 Clone
,或者如果您不想將重複的元素保留在內存中,則可以改用 repeat_with()
函數。
例子
基本用法:
use std::iter;
// the number four 4ever:
let mut fours = iter::repeat(4);
assert_eq!(Some(4), fours.next());
assert_eq!(Some(4), fours.next());
assert_eq!(Some(4), fours.next());
assert_eq!(Some(4), fours.next());
assert_eq!(Some(4), fours.next());
// yup, still four
assert_eq!(Some(4), fours.next());
使用 Iterator::take()
變得有限:
use std::iter;
// that last example was too many fours. Let's only have four fours.
let mut four_fours = iter::repeat(4).take(4);
assert_eq!(Some(4), four_fours.next());
assert_eq!(Some(4), four_fours.next());
assert_eq!(Some(4), four_fours.next());
assert_eq!(Some(4), four_fours.next());
// ... and now we're done
assert_eq!(None, four_fours.next());
相關用法
- Rust repeat_with用法及代碼示例
- Rust replace用法及代碼示例
- Rust rename用法及代碼示例
- Rust remove_dir_all用法及代碼示例
- Rust read用法及代碼示例
- Rust remove_file用法及代碼示例
- Rust read_to_string用法及代碼示例
- Rust read_link用法及代碼示例
- Rust resume_unwind用法及代碼示例
- Rust ready用法及代碼示例
- Rust read_unaligned用法及代碼示例
- Rust remove_dir用法及代碼示例
- Rust remove_var用法及代碼示例
- Rust read_dir用法及代碼示例
- Rust read_volatile用法及代碼示例
- Rust range用法及代碼示例
- Rust UdpSocket.set_multicast_loop_v6用法及代碼示例
- Rust i64.overflowing_add_unsigned用法及代碼示例
- Rust Box.downcast用法及代碼示例
- Rust BTreeMap.last_key_value用法及代碼示例
- Rust str.make_ascii_uppercase用法及代碼示例
- Rust u128.checked_pow用法及代碼示例
- Rust usize.wrapping_mul用法及代碼示例
- Rust AtomicU8.fetch_sub用法及代碼示例
- Rust PanicInfo.payload用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Function std::iter::repeat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。