ILinkedList<T>.Find(T) Method
Finds the first node that contains the specified value.
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.