| LinkedBucketListTFind Method (T) | 
            Finds the bucket with the specified contents. 
            
 
Namespace: SD.Tools.Algorithmia.GeneralDataStructuresAssembly: SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.14.1118)
Syntaxpublic ListBucket<T> Find(
	T contents
)
Public Function Find ( 
	contents As T
) As ListBucket(Of T)
Parameters
- contents
 - Type: T
The contents. 
Return Value
Type: 
ListBucketTthe bucket with the contents or null if not found.
RemarksUses a linear search
See Also