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