public interface GroupAdditive<G> extends Structure<G>
| Modifier and Type | Method and Description |
|---|---|
G |
opposite()
Returns the additive inverse of this object.
|
G |
plus(G that)
Returns the sum of this object with the one specified.
|
G plus(G that)
that - the object to be added.this + that.G opposite()
this.plus(this.opposite()) == ZERO,
with ZERO being the additive identity.-this.