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
::JSON
string for false: ‘false’.
Instance Method Details
#to_json(*) ⇒ ?
Returns a ::JSON
string for false: ‘false’.
# File 'ext/json/generator/generator.c', line 556
static VALUE mFalseClass_to_json(int argc, VALUE *argv, VALUE self) { GENERATE_JSON(false); }