Method: RubyVM::InstructionSequence.load_from_binary_extra_data

Defined in:
iseq.c

.RubyVM::InstructionSequence.load_from_binary_extra_data(binary) ⇒ String

Load extra data embed into binary format String object.



4173
4174
4175
4176
4177
# File 'iseq.c', line 4173

static VALUE
iseqw_s_load_from_binary_extra_data(VALUE self, VALUE str)
{
    return rb_iseq_ibf_load_extra_data(str);
}