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