[This is preliminary documentation and is subject to change.]

Gets value indicating if one index is smaller than other

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
protected override bool IsSmaller(
	long a,
	long b
)
Visual Basic
Protected Overrides Function IsSmaller ( _
	a As Long, _
	b As Long _
) As Boolean
Visual C++
protected:
virtual bool IsSmaller(
	long long a, 
	long long b
) override
F#
abstract IsSmaller : 
        a:int64 * 
        b:int64 -> bool 
override IsSmaller : 
        a:int64 * 
        b:int64 -> bool 
JScript
protected override function IsSmaller(
	a : long, 
	b : long
) : boolean

Parameters

a
Type: System..::..Int64
Index which should be smaller
b
Type: System..::..Int64
Index which should be greater

Return Value

true if a < b

See Also