Interface OrderedGroup<E>
- All Superinterfaces:
Comparable<E>, Group<E>, Magma<E>, Monoid<E>, Set<E>
Represents an Ordered Group.
An ordered group is a group (G, +) equipped with a total order ≤ such that for all a, b, c in G, if a ≤ b then a + c ≤ b + c and c + a ≤ c + b.
- Since:
- 1.0
- Author:
- Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisLessThanOrEqualTo(E a, E b) Checks if the first element is less than or equal to the second.booleanisStrictlyLessThan(E a, E b) Checks if the first element is strictly less than the second.Methods inherited from interface Comparable
compareToMethods inherited from interface Group
inverse, isCommutativeMethods inherited from interface Monoid
identity, isAssociativeMethods inherited from interface Set
contains, description, isEmpty
-
Method Details
-
isStrictlyLessThan
-
isLessThanOrEqualTo
-