Module: Kernel
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#BigDecimal(*args) ⇒ Object
See also BigDecimal::new.
Instance Method Details
#BigDecimal(*args) ⇒ Object
See also BigDecimal::new
2535 2536 2537 2538 2539 2540 2541 2542 |
# File 'bigdecimal.c', line 2535
static VALUE
BigDecimal_global_new(int argc, VALUE *argv, VALUE self)
{
Real *pv = BigDecimal_new(argc, argv);
if (ToValue(pv)) pv = VpCopy(NULL, pv);
pv->obj = TypedData_Wrap_Struct(rb_cBigDecimal, &BigDecimal_data_type, pv);
return pv->obj;
}
|