Class: Object
- Inherits:
- BasicObject
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#OraNumber(obj) ⇒ Object
Returns a new
OraNumber.
Instance Method Details
#OraNumber(obj) ⇒ Object
Returns a new OraNumber.
675 676 677 678 679 680 |
# File 'ext/oci8/ocinumber.c', line 675
static VALUE onum_f_new(int argc, VALUE *argv, VALUE self)
{
VALUE obj = rb_obj_alloc(cOCINumber);
rb_obj_call_init(obj, argc, argv);
return obj;
}
|