IArrayArithmeticT, O Interface

Array Arithmetic Interface.

Definition

Namespace: Metas.UncLib.Core.Interface
Assembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.8.9053.20192
C#
public interface IArrayArithmetic<T, O> : IArithmetic<T>
Implements
IArithmeticT

Type Parameters

T
Array Type
O
Element Type

Methods

Add Returns the sum of the object and b.
(Inherited from IArithmeticT)
Divide Returns the quotient of the object and b.
(Inherited from IArithmeticT)
LAdd Returns the sum of the object and b.
LDivide Returns the quotient of the object and b.
LMultiply Returns the product of the object and b.
LSubtract Returns the difference of the object and b.
Multiply Returns the product of the object and b.
(Inherited from IArithmeticT)
Negative Returns the negative of the object.
(Inherited from IArithmeticT)
RAdd Returns the sum of a and the object.
RDivide Returns the quotient of the a and the object.
RMultiply Returns the product of the a and the object.
RSubtract Returns the difference of a and the object.
Subtract Returns the difference of the object and b.
(Inherited from IArithmeticT)

See Also