Click or drag to resize
Accord.NET (logo)

RedBlackTreeTFind Method

Attempts to find a node that contains the specified key.

Namespace:  Accord.Collections
Assembly:  Accord (in Accord.dll) Version: 3.8.0
Syntax
public RedBlackTreeNode<T> Find(
	T item
)
Request Example View Source

Parameters

item
Type: T
The key whose node is to be found.

Return Value

Type: RedBlackTreeNodeT
A RedBlackTreeNodeT containing the desired item if it is present in the dictionary; otherwise, returns null.
See Also