In Files
- objspace/objspace.c
Parent
Object
Methods
Class/Module Index
ObjectSpace::InternalObjectWrapper
This class is used as a return value from ObjectSpace.reachable_objects_from.
When ObjectSpace.reachable_objects_from returns an object with references to an internal object, an instance of this class is returned.
You can use the type method to check the type of the internal object.
Public Instance Methods
inspect()
See Object#inspect.
static VALUE iow_inspect(VALUE self) { VALUE obj = (VALUE)DATA_PTR(self); VALUE type = type2sym(BUILTIN_TYPE(obj)); return rb_sprintf("#<InternalObject:%p %"PRIsVALUE">", (void *)obj, rb_sym2str(type)); }