{
    "Function": "toInt256",
    "File": "src/contracts/lib/LibMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function toInt256(uint256 x) internal pure returns (int256) {\n        require(x <= POSITIVE_INT256_MAX, \"uint256 overflow\");\n        return int256(x);\n    }"
}