本文簡要介紹rust語言中 std::iter::Iterator.product
的用法。
用法
fn product<P>(self) -> P where P: Product<Self::Item>,
遍曆整個迭代器,將所有元素相乘
一個空的迭代器返回該類型的一個值。
Panics
當調用 product()
並返回原始整數類型時,如果計算溢出並且啟用了調試斷言,則方法將Panics。
例子
fn factorial(n: u32) -> u32 {
(1..=n).product()
}
assert_eq!(factorial(0), 1);
assert_eq!(factorial(1), 1);
assert_eq!(factorial(5), 120);
相關用法
- Rust Iterator.peekable用法及代碼示例
- Rust Iterator.partial_cmp_by用法及代碼示例
- Rust Iterator.position用法及代碼示例
- Rust Iterator.partition用法及代碼示例
- Rust Iterator.partial_cmp用法及代碼示例
- Rust Iterator.partition_in_place用法及代碼示例
- Rust Iterator.skip_while用法及代碼示例
- Rust Iterator.max_by_key用法及代碼示例
- Rust Iterator.is_sorted用法及代碼示例
- Rust Iterator.cmp用法及代碼示例
- Rust Iterator.is_partitioned用法及代碼示例
- Rust Iterator.intersperse用法及代碼示例
- Rust Iterator.scan用法及代碼示例
- Rust Iterator.min用法及代碼示例
- Rust Iterator.find_map用法及代碼示例
- Rust Iterator.rev用法及代碼示例
- Rust Iterator.any用法及代碼示例
- Rust Iterator.max用法及代碼示例
- Rust Iterator.by_ref用法及代碼示例
- Rust Iterator.min_by用法及代碼示例
- Rust Iterator.copied用法及代碼示例
- Rust Iterator.inspect用法及代碼示例
- Rust Iterator.min_by_key用法及代碼示例
- Rust Iterator.intersperse_with用法及代碼示例
- Rust Iterator.flat_map用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::iter::Iterator.product。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。