{
    "Function": "assetBalanceForShares",
    "File": "contracts/libraries/NAV.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function assetBalanceForShares(\n        Data storage self,\n        uint _shares,\n        uint _balance\n    ) internal view returns (uint) {\n        uint _totalSupply = self.totalSupply;\n        if (_totalSupply != 0) {\n            return (_shares * _balance) / _totalSupply;\n        }\n\n        return 0;\n    }"
}