LinkedBucketListTRemove Method (T, FuncT, T, Boolean) | 
 
            Removes the bucket with the specified contents from the list
            
 
    Namespace: 
   SD.Tools.Algorithmia.GeneralDataStructures
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0529)
Syntaxpublic bool Remove(
	T contentsToRemove,
	Func<T, T, bool> compareFunc
)
Public Function Remove ( 
	contentsToRemove As T,
	compareFunc As Func(Of T, T, Boolean)
) As Boolean
Parameters
- contentsToRemove
 - Type: T
The contents to remove. - compareFunc
 - Type: SystemFuncT, T, Boolean
The compare func. 
Return Value
Type: 
Boolean
            true if remove took place, otherwise false
            
See Also