public interface GroupMultiplicative<G> extends Structure<G>
| Modifier and Type | Method and Description |
|---|---|
G |
inverse()
Returns the multiplicative inverse of this object.
|
G |
times(G that)
Returns the product of this object with the one specified.
|
G times(G that)
that - the object multiplier.this · that.G inverse()
this.times(this.inverse()) == ONE ,
with ONE being the multiplicative identity.ONE / this.