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

Returns true if all values between and including min and max are supplied by the parameter.

Namespace: net.esper.eql.parse
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Function IsWildcard ( _
	min As Integer, _
	max As Integer _
) As Boolean
C#
public virtual bool IsWildcard (
	int min,
	int max
)
Visual C++
public:
virtual bool IsWildcard (
	int min, 
	int max
)

Parameters

min
System.Int32
lower end of range
max
System.Int32
upper end of range

Return Value

true if parameter specifies all int values between min and max, false if not