{
    "Function": "getNextNode",
    "File": "src/contracts/libraries/StructuredLinkedList.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "getAdjacent"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getNextNode(List storage self, uint256 _node) internal view returns (bool, uint256) {\n        return getAdjacent(self, _node, _NEXT);\n    }"
}