Comparer<T> typedef

bool Comparer (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 bool Comparer<T>(T left, T right);