{
    "Function": "getNode",
    "File": "src/contracts/libraries/StructuredLinkedList.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "nodeExists"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getNode(List storage self, uint256 _node) internal view returns (bool, uint256, uint256) {\n        if (!nodeExists(self, _node)) {\n            return (false, 0, 0);\n        } else {\n            return (true, self.list[_node][_PREV], self.list[_node][_NEXT]);\n        }\n    }"
}