Click or drag to resize

RankedSetTRemove Method

Removes the supplied item from the set.

Namespace:  Kaos.Collections
Assembly:  KaosCollections (in KaosCollections.dll) Version: 4.2.0.0
Syntax
C#
public bool Remove(
	T item
)

Parameters

item
Type: T
The item to remove.

Return Value

Type: Boolean
true if item was found and removed; otherwise false.

Implements

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