Interface DataStructure.IEquating<T, TEquate>
Represents a type that is equality checking values of type T.
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface IEquating<T, TEquate>
where TEquate : struct, IFunc<T, T, bool>
Type Parameters
| Name | Description |
|---|---|
| T | The type of values this type is equality checking. |
| TEquate | The type that is equality checking |
Properties
| Improve this Doc View SourceEquate
Gets the value of the type that is checking T values for equality.
Declaration
TEquate Equate { get; }
Property Value
| Type | Description |
|---|---|
| TEquate |