delegate int (D_1_CR19_CR19) (const var, const var)
Delegate type for the list::sort() and array::sort() methods.
The delegate should handle null-references and unmatching types gracefully. It should return -1 if value1 is less than value2, 1 if it is greater, and 0 if they are equal.
Aliases
delegate int array::comparator (const var value1, const var value2) |
delegate int list::comparator (const var value1, const var value2) |