{
    "Function": "toInt256",
    "File": "contracts/types/LeftRight.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert CastingError()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function toInt256(uint256 self) internal pure returns (int256) {\n        if (self > uint256(type(int256).max)) revert Errors.CastingError();\n        return int256(self);\n    }"
}