Module: JSON::Ext::Generator::GeneratorMethods::Fixnum
- Defined in:
- ext/json/ext/generator/generator.c,
ext/json/ext/generator/generator.c
Overview
:nodoc:
Instance Method Summary collapse
-
#to_json(*) ⇒ Object
Returns a JSON string representation for this Integer number.
Instance Method Details
#to_json(*) ⇒ Object
Returns a JSON string representation for this Integer number.
443 444 445 446 |
# File 'ext/json/ext/generator/generator.c', line 443
static VALUE mFixnum_to_json(int argc, VALUE *argv, VALUE self)
{
GENERATE_JSON(fixnum);
}
|