writeLongZigZag method
- int value
Implementation
void writeLongZigZag(int value) {
value = (value << 1) & (value >> 63);
_byteBuffer.buffer.asByteData().setInt64(_position, value, Endian.big);
}
void writeLongZigZag(int value) {
value = (value << 1) & (value >> 63);
_byteBuffer.buffer.asByteData().setInt64(_position, value, Endian.big);
}