Comparer<T> typedef

Comparer<T> = bool Function(T left, T right)

Takes two elements of type T and checks them for equality, returning true if the elements are equal and false otherwise.

Implementation

typedef Comparer<T> = bool Function(T left, T right);