Module: JSON::Ext::Generator::GeneratorMethods::TrueClass

Defined in:
generator/generator.c

Instance Method Summary collapse

Instance Method Details

#to_json(*) ⇒ Object

Returns a JSON string for true: ‘true’.



447
448
449
450
# File 'generator/generator.c', line 447

static VALUE mTrueClass_to_json(int argc, VALUE *argv, VALUE self)
{
    GENERATE_JSON(true);
}