-
Notifications
You must be signed in to change notification settings - Fork 36
M_CodeJam_Collections_KeyEqualityComparer_2__ctor
Andrew Koryavchenko edited this page Jun 17, 2018
·
7 revisions
Initializes a new instance of the KeyEqualityComparer(T, TKey).
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public KeyEqualityComparer(
Func<T, TKey> keySelector
)
VB
Public Sub New (
keySelector As Func(Of T, TKey)
)
F#
new :
keySelector : Func<'T, 'TKey> -> KeyEqualityComparer
- keySelector
- Type: System.Func(T, TKey)
The function to extract the key for each element.
KeyEqualityComparer(T, TKey) Class
KeyEqualityComparer(T, TKey) Overload
CodeJam.Collections Namespace