Module: JSON::Ext::Generator::GeneratorMethods::NilClass
    Do not use.  This module is for internal use only.
  
| Relationships & Source Files | |
| Defined in: | ext/json/generator/generator.c | 
Instance Method Summary
- 
    
      #to_json(*)  ⇒ ? 
    
    Returns a ::JSONstring for nil: ‘null’.
Instance Method Details
#to_json(*) ⇒ ?
Returns a ::JSON string for nil: ‘null’.
# File 'ext/json/generator/generator.c', line 646
static VALUE mNilClass_to_json(int argc, VALUE *argv, VALUE self)
{
    rb_check_arity(argc, 0, 1);
    return rb_utf8_str_new("null", 4);
}