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