Method: JSON::Ext::Generator::State#depth
- Defined in:
- ext/json/ext/generator/generator.c
#depth ⇒ Object
This integer returns the current depth of data structure nesting.
1237 1238 1239 1240 1241 |
# File 'ext/json/ext/generator/generator.c', line 1237
static VALUE cState_depth(VALUE self)
{
GET_STATE(self);
return LONG2FIX(state->depth);
}
|