We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Gets index of first set bit from LSB. 🏃 📼 📦 🌔 📒
bit.scan(x); // x: an int32
const bit = require('extra-bit'); bit.scan(7); // 0 (111 => 0) bit.scan(12); // 2 (1100 => 2) bit.scan(64); // 6 (1000000 => 6)