本文简要介绍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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。