Class: Object
- Inherits:
- BasicObject
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#numeric? ⇒ bool
Returns a boolean whether the object is a numeric class.
Instance Method Details
#numeric? ⇒ bool
Returns a boolean whether the object is a numeric class.
52 53 54 55 56 |
# File 'ext/bigdecimal/math_r/overrides.c', line 52
static VALUE
__impl_obj_numeric_p(VALUE self)
{
return rb_num_numeric_p(self) ? Qtrue : Qfalse;
}
|