ILinkedList<T>.AddLast(T) Method

Adds a new node containing the specified value at the end of the ILinkedList<T> .

Namespace: Spring.Collections
public
 function AddLast(const value: T): TLinkedListNode<T>; overload;

Parameters

value
Type: T

The value to add at the end of the ILinkedList<T> .

Return Value

Type: TLinkedListNode<T>

The new TLinkedListNode<T> containing value.