nonzero?()
Returns True if the value is non-zero.
static VALUE BigDecimal_nonzero(VALUE self) { Real *a = GetVpValue(self,1); return VpIsZero(a) ? Qnil : self; }