static Int compareIfNotNull(BigInt a, BigInt b) { ret a == null || b == null ? null : a.compareTo(b); }