ExtendedSemiring
Describes a context that represents "extended" mathematical commutative semiring. It means that it provides operations like +
, *
, power
, and some other that satisfy axioms of semiring like a + b == b + a
or a * (b * c) == (a * b) * c
.
Warning! Aside from Semiring's operations it also provides partially defined binary
-
operation. That's why it is "extended" Semiring. This interface is made only to remove duplication of bridge contextual functions for contexts like UIntContext and ULongContext. For the same reason Ring does not inherit this interface. Thus, it should not be used in algorithms.
Usual structures like integers or real numbers satisfy the axioms (one says that they form commutative rings), so you don't need to worry about fully understanding the concept of commutative ring. It won't be true only the moment you introduce such structures as a semiring of matrices 2⨯2 with usual operations you learn on any course of linear algebra.
Obviously, the Semiring interface extends the Equality interface because otherwise there is no understanding of the mathematical operations.
Inheritors
Functions
Subtracts this number and the other integer as elements of the ExtendedSemiring.