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