Module: JSON::Ext::Generator::GeneratorMethods::String::Extend

Defined in:
ext/json/ext/generator/generator.c,
ext/json/ext/generator/generator.c

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#json_create(o) ⇒ Object

Raw Strings are JSON Objects (the raw bytes are stored in an array for the key “raw”). The Ruby String can be created by this module method.



950
951
952
953
954
955
956
# File 'ext/json/ext/generator/generator.c', line 950

static VALUE mString_Extend_json_create(VALUE self, VALUE o)
{
    VALUE ary;
    Check_Type(o, T_HASH);
    ary = rb_hash_aref(o, rb_str_new2("raw"));
    return rb_funcall(ary, i_pack, 1, rb_str_new2("C*"));
}