{
    "Function": "toRightSlot",
    "File": "contracts/types/LeftRight.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function toRightSlot(int256 self, int128 right) internal pure returns (int256) {\n        // bit mask needed in case rightHalfBitPattern < 0 due to 2's complement\n        unchecked {\n            return self + (int256(right) & RIGHT_HALF_BIT_MASK);\n        }\n    }"
}