IGroup Operations<T> Interface
Represents the contract for operations on a type that supports addition and subtraction.
Definition
Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
[ObsoleteAttribute("Use IOperations<T> instead.")]
public interface IGroupOperations<T> : IComparer<T>,
IEqualityComparer<T>
- Implements
- IComparer<T>, IEqualityComparer<T>
Type Parameters
- T
- The type of the operands.
Properties
Max | Gets the largest possible value of the operand type. |
Min | Gets the smallest possible value of the operand type. |
Zero | Gets the value of zero for the operand type T. |
Methods
Abs | Returns the absolute value of a value. |
Add | Adds one value to another. |
Compare | Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. (Inherited from IComparer<T>) |
Equals | Determines whether the specified objects are equal. (Inherited from IEqualityComparer<T>) |
Get | Returns a hash code for the specified object. (Inherited from IEqualityComparer<T>) |
Negate | Negates a value. |
Subtract | Subtracts one value from another. |