Module: JSON::Ext::Generator::GeneratorMethods::FalseClass
    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 false: ‘false’.
Instance Method Details
#to_json(*) ⇒ ?
Returns a ::JSON string for false: ‘false’.
# File 'ext/json/generator/generator.c', line 635
static VALUE mFalseClass_to_json(int argc, VALUE *argv, VALUE self)
{
    rb_check_arity(argc, 0, 1);
    return rb_utf8_str_new("false", 5);
}