static int stdcmp(Number a, Number b) { ret cmp(a, b); } static int stdcmp(S a, S b) { ret cmp(a, b); } static int stdcmp(long a, long b) { ret a < b ? -1 : a > b ? 1 : 0; } static int stdcmp(O a, O b) { ret cmp(a, b); }