Module: JSON::Ext::Generator::GeneratorMethods::String
    Do not use.  This module is for internal use only.
  
| Relationships & Source Files | |
| Defined in: | ext/json/generator/generator.c | 
Instance Method Summary
- 
    
      #to_json(*)  ⇒ ? 
    
    
This string should be encoded with UTF-8 A call to this method returns a
::JSONstring encoded with UTF16 big endian characters as u????. 
Instance Method Details
#to_json(*) ⇒ ?
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????.
# File 'ext/json/generator/generator.c', line 839
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);
}