Module: JSON::Ext::Generator::GeneratorMethods::Bignum
- Defined in:
- ext/json/ext/generator/generator.c
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.
360 361 362 363 |
# File 'ext/json/ext/generator/generator.c', line 360
static VALUE mBignum_to_json(int argc, VALUE *argv, VALUE self)
{
GENERATE_JSON(bignum);
}
|