{
    "Function": "delta",
    "File": "contracts/dex/math/VaderMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function delta(uint256 a, uint256 b) public pure returns (uint256) {\r\n        return a > b ? a - b : b - a;\r\n    }"
}