Constructor for RCLinkedList passing a IItemPool of type RCLinkedListNode to be used for pooling nodes. For best results initialize the pool with the max capacity needed.

Namespace: RCLibrary
Assembly: RCLibrary (in RCLibrary.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public RCLinkedList(
	IItemPool<RCLinkedListNode<T>> pool
)
Visual Basic
Public Sub New ( _
	pool As IItemPool(Of RCLinkedListNode(Of T)) _
)
Visual C++
public:
RCLinkedList(
	IItemPool<RCLinkedListNode<T>^>^ pool
)

Parameters

pool
Type: RCLibrary..::..IItemPool<(Of <(<'RCLinkedListNode<(Of <(<'T>)>)>>)>)>

[Missing <param name="pool"/> documentation for "M:RCLibrary.RCLinkedList`1.#ctor(RCLibrary.IItemPool{RCLibrary.RCLinkedListNode{`0}})"]

See Also