[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 abstract bool IsSmaller(
	TIndex a,
	TIndex b
)
Visual Basic
Protected MustOverride Function IsSmaller ( _
	a As TIndex, _
	b As TIndex _
) As Boolean
Visual C++
protected:
virtual bool IsSmaller(
	TIndex a, 
	TIndex b
) abstract
F#
abstract IsSmaller : 
        a:'TIndex * 
        b:'TIndex -> bool 
JScript
protected abstract function IsSmaller(
	a : TIndex, 
	b : TIndex
) : boolean

Parameters

a
Type: TIndex
Index which should be smaller
b
Type: TIndex
Index which should be greater

Return Value

true if a < b

See Also