static bool odd(int i) { ret (i & 1) != 0; } static bool odd(long i) { ret (i & 1) != 0; } static bool odd(BigInt i) { ret odd(toInt(i)); }