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