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