{
    "Function": "i256",
    "File": "contracts/math/CastU256I256.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function i256(uint256 x) internal pure returns (int256 y) {\n        require (x <= uint256(type(int256).max), \"Cast overflow\");\n        y = int256(x);\n    }"
}