Click or drag to resize

RankedMapTKey, TValueValueCollectionICollectionTValueContains Method

Determines whether the map contains an element with the supplied value.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
bool ICollection<TValue>.Contains(
	TValue value
)

Parameters

value
Type: TValue
The value to find.

Return Value

Type: Boolean
true if value is found in the map; otherwise false.

Implements

ICollectionTContains(T)
Remarks
This is a O(n) operation.
See Also