Module: Kernel
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#OraNumber(expr = nil, fmt = nil, nlsparam = nil) ⇒ OraNumber
Converts expr to a value of OraNumber.
Instance Method Details
#OraNumber(expr = nil, fmt = nil, nlsparam = nil) ⇒ OraNumber
753 754 755 756 757 758 |
# File 'ext/oci8/ocinumber.c', line 753
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;
}
|