{
    "Function": "addToTree",
    "File": "src/libraries/TreeMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addToTree(mapping(uint256 => uint256)[3] storage _tree, uint256 _id) internal {\n        // add 1 at the right indices\n        uint256 _idDepth2 = _id >> 8;\n        uint256 _idDepth1 = _id >> 16;\n\n        _tree[2][_idDepth2] |= 1 << (_id & 255);\n        _tree[1][_idDepth1] |= 1 << (_idDepth2 & 255);\n        _tree[0][0] |= 1 << _idDepth1;\n    }"
}