{
    "Function": "div",
    "File": "contracts/v3/alchemix/libraries/FixedPointMath.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function div(FixedDecimal memory self, uint256 value) internal pure returns (FixedDecimal memory) {\n    require(value != 0);\n    return FixedDecimal(self.x / value);\n  }"
}