Click or drag to resize
LinkedBucketListTConcat Method
Concats the specified list after this list in an O(1) operation.

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 void Concat(
	LinkedBucketList<T> toConcat
)

Parameters

toConcat
Type: SD.Tools.Algorithmia.GeneralDataStructuresLinkedBucketListT
To concat.
Remarks
After the concat operation, the buckets in toConcat are referenced by this list. It's not recommended to keep on working with toConcat. Instead use this instance, as all data of toConcat is now part of this instance
See Also