Module: JSON::Ext::Generator::GeneratorMethods::String
- Defined in:
- ext/json/ext/generator/generator.c,
ext/json/ext/generator/generator.c
Overview
:nodoc:
Defined Under Namespace
Modules: Extend
Instance Method Summary collapse
-
#to_json(*) ⇒ Object
This string should be encoded with UTF-8 A call to this method returns a JSON string encoded with UTF16 big endian characters as u????.
Instance Method Details
#to_json(*) ⇒ Object
This string should be encoded with UTF-8 A call to this method returns a JSON string encoded with UTF16 big endian characters as u????.
840 841 842 843 844 845 |
# File 'ext/json/ext/generator/generator.c', line 840
static VALUE mString_to_json(int argc, VALUE *argv, VALUE self)
{
rb_check_arity(argc, 0, 1);
VALUE Vstate = cState_from_state_s(cState, argc == 1 ? argv[0] : Qnil);
return cState_partial_generate(Vstate, self, generate_json_string, Qfalse);
}
|