IElementArithmeticT Interface

Element Arithmetic Interface.

Definition

Namespace: Metas.UncLib.Core.Interface
Assembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 3.0.9684.25141
C#
public interface IElementArithmetic<T> : IArithmetic<T>
Implements
IArithmeticT

Type Parameters

T

Properties

One Returns the neutral element of multiplication
Zero Returns the neutral element of addition

Methods

Add Returns the sum of the object and b.
(Inherited from IArithmeticT)
AddProduct Returns the sum of the object and the product of b and c.
Divide Returns the quotient of the object and b.
(Inherited from IArithmeticT)
Multiply Returns the product of the object and b.
(Inherited from IArithmeticT)
Negative Returns the negative of the object.
(Inherited from IArithmeticT)
Subtract Returns the difference of the object and b.
(Inherited from IArithmeticT)
SubtractProduct Returns the difference of the object and the product of b and c.

See Also