{
    "Function": "supportsERC165",
    "File": "contracts/mixins/OZ/ERC165Checker.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "supportsERC165Interface",
        "type()",
        "supportsERC165Interface"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function supportsERC165(address account) internal view returns (bool) {\n    // Any contract that implements ERC165 must explicitly indicate support of\n    // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\n    return\n      supportsERC165Interface(account, type(IERC165).interfaceId) &&\n      !supportsERC165Interface(account, _INTERFACE_ID_INVALID);\n  }"
}