Method: FFI::AbstractMemory#read_bytes
- Defined in:
- ext/ffi_c/AbstractMemory.c
#read_bytes(length) ⇒ String
equivalent to :
memory.get_bytes(0, length)
609 610 611 612 613 |
# File 'ext/ffi_c/AbstractMemory.c', line 609 static VALUE memory_read_bytes(VALUE self, VALUE length) { return memory_get_bytes(self, INT2FIX(0), length); } |