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