binary 3.0.1
binary: ^3.0.1 copied to clipboard
Utilities for accessing binary data and bit manipulation in Dart and Flutter
CHANGELOG #
3.0.0 #
Wooho: 🎉 Added support for Dart SDK 2.17.0 and Null Safety 🎉
Changes are relatively minor, some code that threw an ArgumentError
on a
null value now fails statically, but otherwise there are no behavioral changes
to well-behaving code.
Special thanks to https://github.com/leynier for driving this update!
2.0.0 #
Highlights #
Added limited support for operations on integer values that exceed 32-bits.
Before 2.0.0
most of the methods provided by this package had undefined
behavior when accessing a bit > the 31st bit when compiled to JavaScript:
msb
getBit
setBit
andisSet
clearBit
andisCleared
toggleBit
countSetBits
bitRange
andbitChunk
hiLo
toBinary
andtoBinaryPadded
In addition, these operations will now throw UnsupportedError
when compiled
to JavaScript when attempting operations on integer values that exceed 52-bits,
which is the maximum integer that is supported in JavaScript VMs. The remaining
methods (i.e. signedRightShift
, so on), unless otherwise documented are
assumed to have undefined behavior when compiled to JavaScript.
Tip: Don't want to consider all of that? You can always just use
Uint32
!
Operating on Larger Ints #
Added <int>.hiLo()
, which returns a fixed 2-length Uint32List
where
element 0 is the "hi" (upper bits) and element 1 is the "lo" (lower bits).
Because of platform limitations, "hi" may only include up to the 52nd bit.
Additionally, Uint32List
has received new extension methods through the
extension class BinaryUint64HiLo
(e.g. the result of <int>.hiLo()
), which
simplifies operations for integers larger than 32 bits:
.hi
and.lo
getters.~
and&
and|
operators.equals(Uint32List)
andtoInt()
methods.
These methods allow treating a Uint32List
roughly as a 64-bit integer with
limited boxing. We may still consider adding a Uint64
boxed Integral
in a
future release, but you may also try using these other implemntations:
Additional changes #
- Added
<int>.pow(n)
, which is like<dart:math>.pow
with a return ofint
. - Added
<Integral>.signExtend(startSize)
. - Removed all methods deprecated up to this point.
- Removed
<Integral>.[un]signed
, which was misleading for unsigned integers. - Fixed a bug where
<int>.replaceBitRange
often emitted an incorrect result. - Fixed a bug where
<int>.signExtend
often emitted an incorrect result.
1.7.0 #
- Deprecated
<*>.shiftRight
in favor of<*>.signedShiftRight>
. - Deprecated
<*>.rotateRight
, which was not correctly implemeted. - Added
<*>.rotateRightShift
to replacerotateRight
. - Updated some doc comments that referred to incorrect JavaScript operators.
1.6.0 #
- Added
<BinaryInt|BinaryList|Integral>.toggleBit
. - Deprecated
Integral.setBits
in favor of.bitsSet
.
1.5.0 #
- Added
BitPatternGroup
's constructor, deprecating.toGroup()
. - Added
BitPart.zero
andBitPart.one
and deprecatedBitPart(int)
.
1.4.0 #
- Added
List<int>.toBits()
as a replacement forList<int>.parseBits()
. - Added
String.bits
as a replacement forString.parseBits()
. - Deprecated
List<int>.parseBits()
andString.parseBits()
. - Deprecated
int.as[U]Int{N}
functions in favor of manual wrapping.
1.3.0 #
- Added comparison operators (
>
,>=
,<
,<=
) toIntegral
. - Added
<Integral>.checkRange
and<Integral>.assertRange
static methods. - Added the abiltiy to extend
Integral
to create custom-sized integers.
1.2.2 #
- Fixed a bug where
_InterpretedBitPattern
(theBitPattern
generated fromBitPatternBuilder
) was sorted in an incorrect order (ascending instead of descending), which would notmatch
correctly in some scenarios.
1.2.1 #
- Fixed a bug where
BitPatternBuilder.parse('00AA_AABB')
incorrectly threw aFormatException
assuming that_
deliniated the end of theA
variable segment and the subsequentA
was a new segment (which is invalid). It now correctly parses the above as just two variable segments (AAAA
,BB
).
1.2.0 #
-
Added
BitPatternBuilder.parse
, a simplified-format for buildingBitPattern
from a string of alpha-numeric characters, where0
and1
are pre-defined (static) flags for matching, and charaters are variable segments:// Create a BitPattern (Data Structures). final $01V = BitPatternBuilder([ BitPart(0), BitPart(1), BitPart.v(1, 'A'), ]).build(); // Create a BitPattern (Parse a String). final $01Vs = BitPatternBuilder.parse('01A').build(); print($01V == $01Vs); // true
-
Fixed a bug where it was not possible to capture variables that were >8-bit.
1.1.0 #
- Added
BitPatternBuilder
,BitPattern
,BitPart
: a new API in order to build bit-based patterns and match against arbitrary sets of bits, optionally extracting variable names. This API is intended to make it easier to build apps and packages around implementing emulators and other decoders.
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!