getAll method

Iterable<int> getAll(
  1. int offset
)

Reads the buffer starting at offset into a byte array. The offset must satisfy the relations 0offsetthis.length.

Implementation

Iterable<int> getAll(
  final int offset,
) {
  return _data.getRange(offset, length);
}