TLinkedList<T>.Find(T) Method

Finds the first node that contains the specified value.

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

Parameters

value
Type: T

The value to locate in the ILinkedList<T> .

Return Value

Type: TLinkedListNode<T>

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

Implements

ILinkedList<T>.Find(T)