Compares its two arguments for order. @param v1 The int value to compare. @param v2 The int value to compare. @return If v1 is less than v2, returns negative. If v1 equals to v2, returns zero. If v1 is greater than v2, returns positive.
(int v1, int v2)
| 31 | * @return If v1 is less than v2, returns negative. If v1 equals to v2, returns zero. If v1 is greater than v2, returns positive. |
| 32 | */ |
| 33 | int compare(int v1, int v2); |
| 34 | } |
no outgoing calls