menu
windmillcode_peerdart package
documentation
peerdart-dart-binarypack/binarypack.dart
Unpacker
unpackInt8 method
unpackInt8 method
dark_mode
light_mode
unpackInt8
method
int
unpackInt8
(
)
Implementation
int unpackInt8() { int uint8 = unpackUint8(); return uint8 < 0x80 ? uint8 : uint8 - (1 << 8); }
windmillcode_peerdart package
documentation
peerdart-dart-binarypack/binarypack
Unpacker
unpackInt8 method
Unpacker class