{
    "Function": "_notional",
    "File": "contracts/libraries/Position.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_value"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _notional (\n        Info memory _self,\n        uint256 totalOi,\n        uint256 totalOiShares,\n        uint256 priceFrame\n    ) private pure returns (uint256 notion) {\n\n        uint256 val = _value(\n            _self,\n            totalOi,\n            totalOiShares,\n            priceFrame\n        );\n\n        notion = val + _self.debt;\n\n    }"
}