Interface DataStructure.IHashing<T, THash>
Represents a type that is hashing values of type T
.
Namespace: Towel.DataStructures
Assembly: Towel.dll
Syntax
public interface IHashing<T, THash>
where THash : struct, IFunc<T, int>
Type Parameters
Name | Description |
---|---|
T | The type of values this type is hashing. |
THash | The type that is hashing |
Properties
| Improve this Doc View SourceHash
Gets the value of the type that is hashing T
values.
Declaration
THash Hash { get; }
Property Value
Type | Description |
---|---|
THash |