Esempio n. 1
0
 public static extern VALUE rb_define_class_id(ID name, VALUE super);
Esempio n. 2
0
 public static extern VALUE rb_define_class__id_under(VALUE outer, ID name, VALUE super);
Esempio n. 3
0
 public static extern VALUE rb_define_module_id_under(VALUE outer, ID id);
Esempio n. 4
0
 public static extern VALUE rb_define_module_id(ID id);
Esempio n. 5
0
 public static void rb_define_method_id(VALUE klass, ID name, RubyMethodArg8 method) =>
     rb_define_method_id(klass, name, method, 8);
Esempio n. 6
0
 public static void rb_define_method_id(VALUE klass, ID name, RubyMethodVarArg method) =>
     rb_define_method_id(klass, name, method, -1);
Esempio n. 7
0
 private static extern void rb_define_method_id(VALUE klass, ID name, Delegate method, int argc);