getInt64 method
Reads an Int64 from the buffer.
Implementation
int getInt64() {
final int value = data.getInt64(_position, Endian.host);
_position += 8;
return value;
}
Reads an Int64 from the buffer.
int getInt64() {
final int value = data.getInt64(_position, Endian.host);
_position += 8;
return value;
}