std::iter::Product

Trait std::iter::Product

pub trait Product<A = Self> {
    fn product<I>(iter: I) -> Self    where        I: Iterator<Item = A>;
}

Trait to represent types that can be created by multiplying elements of an iterator.

This trait is used to implement the product method on iterators. Types which implement the trait can be generated by the product method. Like FromIterator this trait should rarely be called directly and instead interacted with through Iterator::product.

Required Methods

Method which takes an iterator and generates Self from the elements by multiplying the items.

Implementors

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/iter/trait.Product.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部