This repository was archived by the owner on Feb 2, 2026. It is now read-only.
v4.0.0-alpha+1
Pre-release
Pre-release
4.0.0-alpha+1
New features:
-
Added
BitList, a compactList<bool>implementation that stores every
element as a single bit, with implementations that are fixed-size and
growable. -
Added
<FixedInt>.zeroand<FixedInt>.oneas static constants. -
Added
collectBytes(), a utility to convert aStream<List<int>>into a
Uint8List.
Breaking changes:
-
Replaced
<FixedInt>.bitswith<FixedInt>.toBitList():- final bits = Int8(0).bits; + final bits = Int8(0).toBitList();