Method: Enumerator#inspect
- Defined in:
- enumerator.c
#inspect ⇒ String
Creates a printable version of e.
1188 1189 1190 1191 1192 |
# File 'enumerator.c', line 1188
static VALUE
enumerator_inspect(VALUE obj)
{
return rb_exec_recursive(inspect_enumerator, obj, 0);
}
|