static Int nullIfZero(Int i) { ret eq(i, 0) ? null : i; } static Float nullIfZero(Float f) { ret eq(f, 0f) ? null : f; }