binary 1.0.0
binary: ^1.0.0 copied to clipboard
Utilities for working with binary data
CHANGELOG #
1.0.0 #
A large update to bring into line for Dart 2, as well take advantage of newer langauge features like extension methods over top-level methods. As a result, the new API is not compatible with previous versions, but migration should be trivial.
0.1.3 #
- Added
arithmeticShiftRight
0.1.2 #
- Moved into a standalone repository (outside of
gba.dart
). - Added
signExtend
as a method toIntegral
. - Added
areSet
. - Added
msb
.
0.1.1 #
- Added
signExtend
0.1.0 #
- Fixed a bug where
int128
anduint128
only had a length of 64.
0.0.4 #
- Updated the documentation and README.
0.0.3 #
- Added
isZero
.
0.0.2 #
- Added
isNegative
,hasCarryBit
,doesAddOverflow
,doesSubOverflow
,mask
. - Added
parseBits
.
0.0.1 #
- Add top-level
isSet
andisClear
,Integral#isSet
,Integral#isClear
. - Add checked-mode range checks to
bitChunk
andbitRange
. - Fix a bug in the implementation of
bitChunk
andbitRange
. - Added a top-level
fromBits
andIntegral#fromBits
0.0.0 #
- Initial commit, feedback welcome!