{
    "Function": "tryGet",
    "File": "contracts/lib/openzeppelin-contracts/contracts/utils/structs/EnumerableMap.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "tryGet"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function tryGet(Bytes32ToUintMap storage map, bytes32 key) internal view returns (bool, uint256) {\n        (bool success, bytes32 value) = tryGet(map._inner, key);\n        return (success, uint256(value));\n    }"
}