Method: JSON::Ext::Generator::State#array_nl
- Defined in:
- ext/json/ext/generator/generator.c
#array_nl ⇒ Object
This string is put at the end of a line that holds a JSON array.
1117 1118 1119 1120 1121 |
# File 'ext/json/ext/generator/generator.c', line 1117
static VALUE cState_array_nl(VALUE self)
{
GET_STATE(self);
return state->array_nl ? rb_str_new2(state->array_nl) : rb_str_new2("");
}
|