sbool isNonZero(Double d) { ret d != null && !isNaN(d) && d != 0; } sbool isNonZero(Long l) { ret l != null && l != 0; }