Click or drag to resize

LinkedBucketList<T>.Find Method (T)

Finds the bucket with the specified contents.

Namespace:  SD.Tools.Algorithmia.GeneralDataStructures
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.3.0 (1.3.18.0209)
Syntax
public ListBucket<T> Find(
	T contents
)

Parameters

contents
Type: T
The contents.

Return Value

Type: ListBucket<T>
the bucket with the contents or null if not found.
Remarks
Uses a linear search
See Also