Module: Kernel
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#Decimal(arg) ⇒ Object
Identical to
Decimal.new(arg), except that this method never be affected from overridingDecimal#initialize.
Instance Method Details
#Decimal(arg) ⇒ Object
Identical to Decimal.new(arg), except that this method never be affected from overriding Decimal#initialize.
318 319 320 321 322 |
# File 'decimal.c', line 318 static VALUE f_decimal(VALUE klass UNUSED, VALUE arg) { return dec_initialize(dec_s_allocate(cDecimal), arg); } |