Trait grafix_toolbox::stdlib::iter::Product

1.12.0 · source ·
pub trait Product<A = Self>: Sized {
    // Required method
    fn product<I>(iter: I) -> Self
       where I: Iterator<Item = A>;
}
Expand description

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

This trait is used to implement Iterator::product(). Types which implement this trait can be generated by using the product() method on an iterator. Like FromIterator, this trait should rarely be called directly.

Required Methods§

source

fn product<I>(iter: I) -> Self
where I: Iterator<Item = A>,

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Product for f32

source§

impl Product for f64

source§

impl Product for i8

source§

impl Product for i16

source§

impl Product for i32

source§

impl Product for i64

source§

impl Product for i128

source§

impl Product for isize

source§

impl Product for u8

source§

impl Product for u16

source§

impl Product for u32

source§

impl Product for u64

source§

impl Product for u128

source§

impl Product for usize

source§

impl Product for f16

1.14.0 · source§

impl Product for Wrapping<i8>

1.14.0 · source§

impl Product for Wrapping<i16>

1.14.0 · source§

impl Product for Wrapping<i32>

1.14.0 · source§

impl Product for Wrapping<i64>

1.14.0 · source§

impl Product for Wrapping<i128>

1.14.0 · source§

impl Product for Wrapping<isize>

1.14.0 · source§

impl Product for Wrapping<u8>

1.14.0 · source§

impl Product for Wrapping<u16>

1.14.0 · source§

impl Product for Wrapping<u32>

1.14.0 · source§

impl Product for Wrapping<u64>

1.14.0 · source§

impl Product for Wrapping<u128>

1.14.0 · source§

impl Product for Wrapping<usize>

source§

impl Product for bf16

source§

impl<'a> Product<&'a f32> for f32

source§

impl<'a> Product<&'a f64> for f64

source§

impl<'a> Product<&'a i8> for i8

source§

impl<'a> Product<&'a i16> for i16

source§

impl<'a> Product<&'a i32> for i32

source§

impl<'a> Product<&'a i64> for i64

source§

impl<'a> Product<&'a i128> for i128

source§

impl<'a> Product<&'a isize> for isize

source§

impl<'a> Product<&'a u8> for u8

source§

impl<'a> Product<&'a u16> for u16

source§

impl<'a> Product<&'a u32> for u32

source§

impl<'a> Product<&'a u64> for u64

source§

impl<'a> Product<&'a u128> for u128

source§

impl<'a> Product<&'a usize> for usize

source§

impl<'a> Product<&'a f16> for f16

1.14.0 · source§

impl<'a> Product<&'a Wrapping<i8>> for Wrapping<i8>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<i16>> for Wrapping<i16>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<i32>> for Wrapping<i32>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<i64>> for Wrapping<i64>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<i128>> for Wrapping<i128>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<isize>> for Wrapping<isize>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<u8>> for Wrapping<u8>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<u16>> for Wrapping<u16>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<u32>> for Wrapping<u32>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<u64>> for Wrapping<u64>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<u128>> for Wrapping<u128>

1.14.0 · source§

impl<'a> Product<&'a Wrapping<usize>> for Wrapping<usize>

source§

impl<'a> Product<&'a bf16> for bf16

source§

impl<'a, T> Product<&'a Complex<T>> for Complex<T>
where T: 'a + Num + Clone,

source§

impl<'a, T> Product<&'a Ratio<T>> for Ratio<T>
where T: Integer + Clone,

source§

impl<'a, T, D> Product<&'a Matrix<T, D, D, <DefaultAllocator as Allocator<T, D, D>>::Buffer>> for Matrix<T, D, D, <DefaultAllocator as Allocator<T, D, D>>::Buffer>

source§

impl<'a, const N: usize> Product<&'a Simd<f32, N>> for Simd<f32, N>

source§

impl<'a, const N: usize> Product<&'a Simd<f64, N>> for Simd<f64, N>

source§

impl<'a, const N: usize> Product<&'a Simd<i8, N>> for Simd<i8, N>

source§

impl<'a, const N: usize> Product<&'a Simd<i16, N>> for Simd<i16, N>

source§

impl<'a, const N: usize> Product<&'a Simd<i32, N>> for Simd<i32, N>

source§

impl<'a, const N: usize> Product<&'a Simd<i64, N>> for Simd<i64, N>

source§

impl<'a, const N: usize> Product<&'a Simd<isize, N>> for Simd<isize, N>

source§

impl<'a, const N: usize> Product<&'a Simd<u8, N>> for Simd<u8, N>

source§

impl<'a, const N: usize> Product<&'a Simd<u16, N>> for Simd<u16, N>

source§

impl<'a, const N: usize> Product<&'a Simd<u32, N>> for Simd<u32, N>

source§

impl<'a, const N: usize> Product<&'a Simd<u64, N>> for Simd<u64, N>

source§

impl<'a, const N: usize> Product<&'a Simd<usize, N>> for Simd<usize, N>

source§

impl<RHS> Product<RHS> for f32x4
where f32x4: MulAssign<RHS>,

source§

impl<RHS> Product<RHS> for f32x8
where f32x8: MulAssign<RHS>,

source§

impl<RHS> Product<RHS> for f64x2
where f64x2: MulAssign<RHS>,

source§

impl<RHS> Product<RHS> for f64x4
where f64x4: MulAssign<RHS>,

source§

impl<RHS> Product<RHS> for i16x8
where i16x8: MulAssign<RHS>,

source§

impl<RHS> Product<RHS> for i32x4
where i32x4: MulAssign<RHS>,

source§

impl<RHS> Product<RHS> for i32x8
where i32x8: MulAssign<RHS>,

source§

impl<T> Product for Complex<T>
where T: Num + Clone,

source§

impl<T> Product for Ratio<T>
where T: Integer + Clone,

source§

impl<T, D> Product for Matrix<T, D, D, <DefaultAllocator as Allocator<T, D, D>>::Buffer>

1.37.0 · source§

impl<T, U> Product<Option<U>> for Option<T>
where T: Product<U>,

1.16.0 · source§

impl<T, U, E> Product<Result<U, E>> for Result<T, E>
where T: Product<U>,

source§

impl<const N: usize> Product for Simd<f32, N>

source§

impl<const N: usize> Product for Simd<f64, N>

source§

impl<const N: usize> Product for Simd<i8, N>

source§

impl<const N: usize> Product for Simd<i16, N>

source§

impl<const N: usize> Product for Simd<i32, N>

source§

impl<const N: usize> Product for Simd<i64, N>

source§

impl<const N: usize> Product for Simd<isize, N>

source§

impl<const N: usize> Product for Simd<u8, N>

source§

impl<const N: usize> Product for Simd<u16, N>

source§

impl<const N: usize> Product for Simd<u32, N>

source§

impl<const N: usize> Product for Simd<u64, N>

source§

impl<const N: usize> Product for Simd<usize, N>