forked from mruby/mruby
-
Notifications
You must be signed in to change notification settings - Fork 0
mrb_undef_method
cremno edited this page Sep 11, 2013
·
2 revisions
| Declaration | Definition |
|---|---|
| mruby.h | class.c |
void mrb_undef_method(mrb_state *mrb, struct RClass *klass, const char *name);Undefines a method. A NameError is raised if klass does not respond to name.
- mrb: mruby VM state
- klass: class of the method
- name: name of the method
None.