Click or drag to resize

EnumerableCompararerT Constructor

Constructor.

Namespace:  WhetStone.Comparison
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public EnumerableCompararer(
	IComparer<T> i = null,
	IEqualityComparer<T> eq = null,
	Nullable<int> hashTake = null
)

Parameters

i (Optional)
Type: System.Collections.GenericIComparerT
The inner IComparerT to compare individual elements. for default.
eq (Optional)
Type: System.Collections.GenericIEqualityComparerT
The inner IEqualityComparerT to compare and hash individual elements. to use i to compare equality and disallow hashing.
hashTake (Optional)
Type: SystemNullableInt32
The maximum number of element to take for the hash function. for no maximum.
See Also