 | RankedSetTContains Method |
Determines whether the set contains the supplied item.
Namespace:
Kaos.Collections
Assembly:
KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntaxpublic bool Contains(
T item
)
Parameters
- item
- Type: T
The item to locate.
Return Value
Type:
Booleantrue if
item is contained in the set; otherwise
false.
Implements
ICollectionTContains(T)
RemarksThis is a O(log n) operation.
See Also