Module: JSON::Ext::Generator::GeneratorMethods::Bignum
- Defined in:
- ext/json/generator/generator.c
Instance Method Summary (collapse)
-
- (Object) to_json(*)
Returns a JSON string representation for this Integer number.
Instance Method Details
- (Object) to_json(*)
Returns a JSON string representation for this Integer number.
|
|
# File 'ext/json/generator/generator.c'
static VALUE mBignum_to_json(int argc, VALUE *argv, VALUE self)
{
GENERATE_JSON(bignum);
}
|