= private = protected
positive?()
Returns true if float is greater than 0.
static VALUE flo_positive_p(VALUE num) { double f = RFLOAT_VALUE(num); return f > 0.0 ? Qtrue : Qfalse; }