-
Notifications
You must be signed in to change notification settings - Fork 1
count
Subhajit Sahu edited this page Feb 2, 2021
·
14 revisions
bit.count(x);
// x: an int32
const bit = require('extra-bit');
bit.count(7);
// 3 (111 => 3)
bit.count(12);
// 2 (1100 => 2)
bit.count(63);
// 6 (111111 => 6)