public interface CompareInts
Modifier and Type | Method and Description |
---|---|
int |
compare(int one,
int two)
This should return <0 if one is considered less than two, >0 if one is
considered more than two, and 0 if they are considered equal.
|