Returns true if x < y, false otherwise.
true
x
y
false
@override bool lt(T x, T y) => compare(x, y) < 0;