Method: Struct#members
- Defined in:
- struct.c
#members ⇒ Object
225 226 227 228 229 |
# File 'struct.c', line 225
static VALUE
rb_struct_members_m(VALUE obj)
{
return rb_struct_s_members_m(rb_obj_class(obj));
}
|
225 226 227 228 229 |
# File 'struct.c', line 225
static VALUE
rb_struct_members_m(VALUE obj)
{
return rb_struct_s_members_m(rb_obj_class(obj));
}
|