pub trait Sum<A = Self> {
fn sum<I>(iter: I) -> Self
where
I: Iterator<Item = A>;
}
Expand description
Trait to represent types that can be created by summing up an iterator.
This trait is used to implement Iterator::sum(). Types which implement
this trait can be generated by using the sum() method on an iterator.
Like FromIterator, this trait should rarely be called directly.
Method which takes an iterator and generates Self from the elements by
“summing up” the items.
impl<'a, P> Sum<&'a Fp2<P>> for Fp2<P> where
P: Fp2Parameters,
impl<'a, P> Sum<&'a Fp6<P>> for Fp6<P> where
P: Fp6Parameters,
impl<'a, P> Sum<&'a Fp12<P>> for Fp12<P> where
P: Fp12Parameters,
impl<'a, P> Sum<&'a Fp256<P>> for Fp256<P> where
P: Fp256Parameters,
impl<'a, P> Sum<&'a Fp384<P>> for Fp384<P> where
P: Fp384Parameters,
impl<'a, P> Sum<&'a Projective<P>> for Projective<P> where
P: ShortWeierstrassParameters,
impl<P> Sum<Fp2<P>> for Fp2<P> where
P: Fp2Parameters,
impl<P> Sum<Fp6<P>> for Fp6<P> where
P: Fp6Parameters,
impl<P> Sum<Fp12<P>> for Fp12<P> where
P: Fp12Parameters,
impl<P> Sum<Fp256<P>> for Fp256<P> where
P: Fp256Parameters,
impl<P> Sum<Fp384<P>> for Fp384<P> where
P: Fp384Parameters,
impl<P> Sum<Projective<P>> for Projective<P> where
P: ShortWeierstrassParameters,