Trait alga::general::TwoSidedInverse [−][src]
Trait used to define the two_sided_inverse element relative to the given operator.
The operator, e.g., Additive or Multiplicative, is identified by the type parameter O.
Required methods
fn two_sided_inverse(&self) -> Self[src]
Returns the two_sided_inverse of self, relative to the operator O.
The parameter O is generally either Additive or Multiplicative.
Provided methods
fn two_sided_inverse_mut(&mut self)[src]
In-place inversion of self, relative to the operator O.
The parameter O is generally either Additive or Multiplicative.