[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Retrieves the list of key-value pairs for all elements in the dictionary greater than or equal to the key. This operation is less expensive that the Tail() method.

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Function TailFast ( _
	key As K _
) As IEnumerator(Of KeyValuePair(Of K, V))
C#
public virtual IEnumerator<KeyValuePair<K, V>> TailFast (
	K key
)
Visual C++
public:
virtual IEnumerator<KeyValuePair<K, V>>^ TailFast (
	K key
)

Parameters

key
K type parameter of net.esper.compat.ETreeDictionary<(Of K, V>).

Return Value