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 599
static VALUE mTrueClass_to_json(int argc, VALUE *argv, VALUE self) { rb_check_arity(argc, 0, 1); return rb_utf8_str_new("true", 4); }