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