Method: CBOR.load

Defined in:
ext/cbor/unpacker_class.c

.load(*args) ⇒ Object

MessagePack.unpack(x)



376
377
378
379
380
# File 'ext/cbor/unpacker_class.c', line 376

static VALUE MessagePack_load_module_method(int argc, VALUE* argv, VALUE mod)
{
    UNUSED(mod);
    return MessagePack_unpack(argc, argv);
}