}
}
}
public void transferFrom(long offset, Pointer other, long otherOffset, long count) {
Pointer src = other instanceof DelegatingMemoryIO ? ((DelegatingMemoryIO) other).getDelegatedMemoryIO() : other;
src.checkBounds(otherOffset, count);
if (src instanceof AbstractArrayMemoryIO) {
AbstractArrayMemoryIO aio = (AbstractArrayMemoryIO) src;
put(offset, aio.array(), aio.offset() + (int) otherOffset, (int) count);