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