bitcount 0.3.0 bitcount: ^0.3.0 copied to clipboard
Provides efficient one-bits count method extension for default int.
Changelog #
[0.3.0] - 2021-11-16 #
Added #
- instructions on how to run benchmark.
Changed #
- bitcount on native is no longer 2 32 bit counts but a single 64 bit one.
- code no longer detects if it is running on JS but using dart2js hack but
relies on conditional imports and
dart.library.js
availability. - increased number of iterations in benchmark. Helps to see the difference in this library case.
[0.2.0] - 2021-03-20 #
[0.1.3] - 2021-03-16 #
[0.1.2] - 2020-02-21 #
Fixed #
- switched visibility for implementation detail so it is no longer exposed as public.