Module: JSON::Ext::Generator::GeneratorMethods::Float
- 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 Float number.
Instance Method Details
#to_json(*) ⇒ Object
Returns a JSON string representation for this Float number.
464 465 466 467 |
# File 'ext/json/ext/generator/generator.c', line 464
static VALUE mFloat_to_json(int argc, VALUE *argv, VALUE self)
{
GENERATE_JSON(float);
}
|