{
    "Function": "_tryGet",
    "File": "contracts/openzeppelin-solidity/contracts/utils/structs/EnumerableMap.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_contains"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {\n        bytes32 value = map._values[key];\n        if (value == bytes32(0)) {\n            return (_contains(map, key), bytes32(0));\n        } else {\n            return (true, value);\n        }\n    }"
}