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