/** * Document-method: MessagePack::Unpacker#data * * call-seq: * unpacker.data * * Gets the object deserialized by execute method. * * Use this method with execute method. */ static VALUE MessagePack_Unpacker_data(VALUE self) { UNPACKER(self, mp); return template_data(mp); }