Click or drag to resize
LinkedBucketList<T>.Find Method (T, Func<T, T, Boolean>)
Finds the bucket with the specified contents using the comparer func specified.

Namespace:  SD.Tools.Algorithmia.GeneralDataStructures
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.0.0 (1.3.17.0314)
Syntax
public ListBucket<T> Find(
	T contents,
	Func<T, T, bool> compareFunc
)

Parameters

contents
Type: T
The contents.
compareFunc
Type: System.Func<T, T, Boolean>
The compare func.

Return Value

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