You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
537 B
17 lines
537 B
/*
|
|
* This is a AssemblyScript port of the original Java version, which was written by
|
|
* Gil Tene as described in
|
|
* https://github.com/HdrHistogram/HdrHistogram
|
|
* and released to the public domain, as explained at
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
import { bitCount } from "../packedarray/bitcount";
|
|
|
|
describe("bit count", () => {
|
|
it("should count bits", () => {
|
|
expect<u8>(bitCount(8)).toBe(1);
|
|
expect<u8>(bitCount(40)).toBe(2);
|
|
expect<u8>(bitCount((u64.MAX_VALUE >> 1) + 1)).toBe(1);
|
|
});
|
|
});
|