| D | product.rs | 4 use std::iter::{self, Product}; 7 pub(super) fn product<PI, P>(pi: PI) -> P in product() function 10 P: Send + Product<PI::Item> + Product, in product() argument 15 fn mul<T: Product>(left: T, right: T) -> T { in mul() 16 iter::once(left).chain(iter::once(right)).product() in mul() 35 P: Send + Product<T> + Product, 51 product: iter::empty::<T>().product(), in into_folder() 62 P: Send + Product<T> + Product, 75 P: Send + Product, 83 product: P, field [all …]
|