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