| RankedDictionaryTKey, TValueKeyCollectionICollectionTKeyContains Method |
Determines whether the collection contains the supplied key.
Namespace:
Kaos.Collections
Assembly:
KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax bool ICollection<TKey>.Contains(
TKey key
)
Parameters
- key
- Type: TKey
The key to locate.
Return Value
Type:
Booleantrue if
key is contained in the collection; otherwise
false.
Implements
ICollectionTContains(T)Remarks This is a O(log n) operation.
See Also