SkipList<T>.Find (T, Comparison<T>) Method
Public Function Find( _
ByVal val As T, _
ByVal comp As Comparison(Of T) _
) As SkipListNode(Of T)
This language is not supported or no code example is available.
public SkipListNode<T> Find(
T val,
Comparison<T> comp
)
This language is not supported or no code example is available.
public:
SkipListNode<T^>^ Find(
T^ val,
Comparison<T^>^ comp
)
This language is not supported or no code example is available.
Parameters
- val
- T
The value to look for.
- comp
- Comparison<T>
A comparison function.
Return Value
SkipListNode<T>Returns the first node with the value val. null if not found.