AddMon

Trait AddMon 

Source
pub trait AddMon:
    Elem
    + Zero
    + AddMonOps
    + AddAssign
    + for<'a> AddAssign<&'a Self>
where for<'a> &'a Self: AddMonOps<Self>,
{ // Provided method fn sum<A, I>(itr: I) -> Self where Self: AddAssign<A>, I: IntoIterator<Item = A> { ... } }

Provided Methods§

Source

fn sum<A, I>(itr: I) -> Self
where Self: AddAssign<A>, I: IntoIterator<Item = A>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AddMon for i32

Source§

impl AddMon for i64

Source§

impl AddMon for i128

Source§

impl AddMon for BigInt

Implementors§

Source§

impl AddMon for FF2

Source§

impl<I, const D: i32> AddMon for QuadInt<I, D>
where I: Integer, for<'x> &'x I: IntOps<I>,

Source§

impl<T> AddMon for Ratio<T>
where T: EucRing, for<'x> &'x T: EucRingOps<T>,

Source§

impl<X, R> AddMon for Lc<X, R>
where X: Gen, R: Ring, for<'x> &'x R: RingOps<R>,

Source§

impl<X, R> AddMon for PolyBase<X, R>
where X: Mono, R: Ring, for<'x> &'x R: RingOps<R>,

Source§

impl<const X: char, R> AddMon for HPoly<X, R>
where R: Ring, for<'x> &'x R: RingOps<R>,

Source§

impl<const p: i32> AddMon for FF<p>