Method: MessagePack::Buffer#to_str
- Defined in:
- ext/msgpack/buffer_class.c
#to_str ⇒ Object Also known as: to_s
535 536 537 538 539 |
# File 'ext/msgpack/buffer_class.c', line 535 static VALUE Buffer_to_str(VALUE self) { msgpack_buffer_t *b = MessagePack_Buffer_get(self); return msgpack_buffer_all_as_string(b); } |