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

Retrieves a dictionary that includes all elements greater than or equal to the lower key and less than or equal to the upper key. This operation can be expensive, use with care.

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

Syntax

Visual Basic (Declaration)
Public Overridable Function Range ( _
	lowerKey As K, _
	upperKey As K _
) As ETreeDictionary(Of K, V)
C#
public virtual ETreeDictionary<K, V> Range (
	K lowerKey,
	K upperKey
)
Visual C++
public:
virtual ETreeDictionary<K, V>^ Range (
	K lowerKey, 
	K upperKey
)

Parameters

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

Return Value