TLinkedList<T>.FindLast(T) Method

Finds the last node that contains the specified value.

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

Parameters

value
Type: T

The value to locate in the ILinkedList<T> .

Return Value

Type: TLinkedListNode<T>

The last TLinkedListNode<T> that contains the specified value, if found; otherwise, nil.

Implements

ILinkedList<T>.FindLast(T)