static A nullFalseTrue(Bool b, A onNull, A onFalse, A onTrue) { ret b == null ? onNull : b.booleanValue() ? onTrue : onFalse; }