{
    "Function": "_getBottomId",
    "File": "src/libraries/TreeMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getBottomId(uint24 _branchId, uint24 _leafId) private pure returns (uint24) {\n        // Optimization of `_branchId * 256 + _leafId`\n        // Can't overflow as _leafId would fit in uint8, but kept as uint24 to optimize castings\n        unchecked {\n            return (_branchId << 8) + _leafId;\n        }\n    }"
}