Module: JSON::Ext::Generator::GeneratorMethods::FalseClass
- Defined in:
- ext/json/ext/generator/generator.c
Instance Method Summary collapse
-
#to_json(*) ⇒ Object
Returns a JSON string for false: ‘false’.
Instance Method Details
#to_json(*) ⇒ Object
Returns a JSON string for false: ‘false’.
457 458 459 460 |
# File 'ext/json/ext/generator/generator.c', line 457
static VALUE mFalseClass_to_json(int argc, VALUE *argv, VALUE self)
{
GENERATE_JSON(false);
}
|