{
    "Function": "neg",
    "File": "contracts/math/SafeInt256.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "mul"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function neg(int256 x) internal pure returns (int256 y) {\n        return mul(-1, x);\n    }"
}