Module: Kernel
- Defined in:
- (unknown)
Instance Method Summary collapse
-
#MPFI ⇒ Object
Return new MPFI instance.
Instance Method Details
#MPFI ⇒ Object
Return new MPFI instance. The same arguments as MPFI.new is acceptable.
158 159 160 161 162 163 164 165 |
# File 'ext/mpfi/ruby_mpfi.c', line 158
static VALUE r_mpfi_global_new (int argc, VALUE *argv, VALUE self)
{
MPFI *ptr;
VALUE val;
r_mpfi_make_struct(val, ptr);
r_mpfi_set_initial_value(ptr, argc, argv);
return val;
}
|