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