getInt64 method

int getInt64 ()

Reads an Int64 from the buffer.

Implementation

int getInt64() {
  final int value = data.getInt64(_position, Endian.host);
  _position += 8;
  return value;
}