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