Click or drag to resize

LinkedBucketList<T>.InsertBefore Method

Inserts the specified node toInsert before the node toInsertBefore.

Namespace:  SD.Tools.Algorithmia.GeneralDataStructures
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntax
public void InsertBefore(
	ListBucket<T> toInsert,
	ListBucket<T> toInsertBefore
)

Parameters

toInsert
Type: SD.Tools.Algorithmia.GeneralDataStructures.ListBucket<T>
To insert into the list.
toInsertBefore
Type: SD.Tools.Algorithmia.GeneralDataStructures.ListBucket<T>
the node to insert before. Has to be in the list
See Also