IComparerClass.DoubleComparer

Syntax

DoubleComparer: IComparer;

Description

The DoubleComparer property returns an object to compare elements of real type.

Example

Sub UserProc;
Var
    ArrayL: IArrayList;
    i: Integer;
Begin
    ArrayL := New ArrayList.Create;
    For i := 0 To Math.RandBetweenI(50100Do
        ArrayL.Add(Math.RandBetween(0100));
    End For;
    ArrayL.Sort(Comparer.DoubleComparer);
End Sub UserProc;

After executing the example a dynamic array of random real numbers is generated, the array is sorted in ascending order.

See also:

IComparerClass