Transfers this buffer's data to the specified destination starting at the specified absolute index. @param dstIndex the first index of the destination @param length the number of bytes to transfer @throws IndexOutOfBoundsException if the specified index is less than 0, if th
(int index, Slice dst, int dstIndex, int length)
| 179 | * {@code dst.capacity} |
| 180 | */ |
| 181 | public void getBytes(int index, Slice dst, int dstIndex, int length) { |
| 182 | getBytes(index, dst.data, dstIndex, length); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Transfers this buffer's data to the specified destination starting at |