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