{
    "Function": "countSetBits",
    "File": "contracts/OFT/util/BitLib.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function countSetBits(uint x) internal pure returns (uint256) {\n        x = (x & m1 ) + ((x >>  1) & m1 );\n        x = (x & m2 ) + ((x >>  2) & m2 );\n        x = (x & m4 ) + ((x >>  4) & m4 );\n        x = (x & m8 ) + ((x >>  8) & m8 );\n        x = (x & m16) + ((x >> 16) & m16);\n        x = (x & m32) + ((x >> 32) & m32);\n        x = (x & m64) + ((x >> 64) & m64);\n        x = (x & m128) + ((x >> 128) & m128);\n        return x;\n    }"
}