{
    "Function": "getNextBitNum",
    "File": "contracts/math/Bitmap.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "getMSB"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getNextBitNum(bytes32 bitmap) internal pure returns (uint256 bitNum) {\n        // Short circuit the search if bitmap is all zeros\n        if (bitmap == 0x00) return 0;\n\n        return 255 - getMSB(uint256(bitmap)) + 1;\n    }"
}