ILinkedList<T>.Find Method

Definition

Finds the first node that contains the specified value.

Delphi
function Find(const value: T): TLinkedListNode<T>

Parameters

value
T

The value to locate in the ILinkedList<T> .

Returns

TLinkedListNode<T>

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