{
    "Function": "isBitSet",
    "File": "contracts/math/Bitmap.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function isBitSet(bytes32 bitmap, uint256 index) internal pure returns (bool) {\n        require(index >= 1 && index <= 256); // dev: set bit index bounds\n        return ((bitmap << (index - 1)) & Constants.MSB) == Constants.MSB;\n    }"
}