public_instance_methods(*args)
public
Returns a list of the public instance
methods defined in mod. If the optional parameter is not false,
the methods of any ancestors are included.
Show source
VALUE
rb_class_public_instance_methods(int argc, VALUE *argv, VALUE mod)
{
return class_instance_method_list(argc, argv, mod, 0, ins_methods_pub_i);
}