Interface DataStructure.IComparing<T, TCompare>
Represents a type that is comparing values of type T.
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface IComparing<T, TCompare>
where TCompare : struct, IFunc<T, T, CompareResult>
Type Parameters
| Name | Description |
|---|---|
| T | The type of values this type is comparing. |
| TCompare | The type that is comparing |
Properties
| Improve this Doc View SourceCompare
Gets the value of the comparer that is comparing T values.
Declaration
TCompare Compare { get; }
Property Value
| Type | Description |
|---|---|
| TCompare |