ComparatorFunc


Description:

public delegate int ComparatorFunc<T> (T a, T b)

A function that compares two values for ordering.

Parameters:

a

the first value.

b

the second value.

Returns:

negative if a < b, zero if equal, positive if a > b.


Namespace: Vala.Collections
Package: Valacore