Module: Kernel

Defined in:
(unknown)

Instance Method Summary collapse

Instance Method Details

#MPFIObject

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;
}