{
    "Function": "toUInt",
    "File": "contracts/math/ABDKMath64x64.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function toUInt(int128 x) internal pure returns (uint64) {\n        require(x >= 0); // dev: abdk uint overflow\n        return uint64(x >> 64);\n    }"
}