Click or drag to resize

LinkedBucketList<T>.InsertAfter Method

Inserts the specified node toInsert after the node toInsertAfter.

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 InsertAfter(
	ListBucket<T> toInsert,
	ListBucket<T> toInsertAfter
)

Parameters

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