|
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
)
Public Function Find (
item As T
) As RedBlackTreeNode(Of T)
Request Example
View SourceParameters
- 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