| FastKeyedCollectionTKey, TItem Constructor (Int32, FuncTItem, TKey) |
Namespace:
Cauldron.Collections
Assembly:
Cauldron.Collections (in Cauldron.Collections.dll) Version: 1.0.0
Syntax public FastKeyedCollection(
int roughsize,
Func<TItem, TKey> keySelector
)
Public Sub New (
roughsize As Integer,
keySelector As Func(Of TItem, TKey)
)
public:
FastKeyedCollection(
int roughsize,
Func<TItem, TKey>^ keySelector
)
Parameters
- roughsize
- Type: SystemInt32
The max size of the bucket. - keySelector
- Type: SystemFuncTItem, TKey
A function to extract a key from each element.
See Also