Trait alga::general::Module [] [src]

pub trait Module: AbstractModule<AbstractRing = Self::Ring> + AdditiveGroupAbelian + ClosedMul<Self::Ring> {
    type Ring: RingCommutative;
}

A module which overloads the * and + operators.

Associated Types

The underlying scalar field.

Implementors